From d40b81e74c37a3e1d8783c2edce2e8d6e637d4aa Mon Sep 17 00:00:00 2001 From: Linus Wacker <70486856+SirDragooon@users.noreply.github.com> Date: Mon, 15 Aug 2022 06:57:31 +0200 Subject: [PATCH] increases pillAmount limit (#9185) * increases pillAmount limit * Update ChemMasterWindow.xaml.cs Co-authored-by: wrexbe <81056464+wrexbe@users.noreply.github.com> --- Content.Client/Chemistry/UI/ChemMasterWindow.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Client/Chemistry/UI/ChemMasterWindow.xaml.cs b/Content.Client/Chemistry/UI/ChemMasterWindow.xaml.cs index 23ad7cbc6d..b1ae05e8f7 100644 --- a/Content.Client/Chemistry/UI/ChemMasterWindow.xaml.cs +++ b/Content.Client/Chemistry/UI/ChemMasterWindow.xaml.cs @@ -37,7 +37,7 @@ namespace Content.Client.Chemistry.UI private static bool IsSpinValid(int n) { - return n is > 0 and <= 10; + return n is > 0 and <= 25; } ///