From: Kowlin <10947836+Kowlin@users.noreply.github.com> Date: Tue, 23 Dec 2025 05:59:36 +0000 (+0100) Subject: Fix Setgamepreset (#41963) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=3a3707d2a2283ebb3f202708c98f9ba52ee499a7;p=space-station-14.git Fix Setgamepreset (#41963) --- diff --git a/Content.Server/GameTicking/Commands/SetGamePresetCommand.cs b/Content.Server/GameTicking/Commands/SetGamePresetCommand.cs index 894460fe3f..5c02dea513 100644 --- a/Content.Server/GameTicking/Commands/SetGamePresetCommand.cs +++ b/Content.Server/GameTicking/Commands/SetGamePresetCommand.cs @@ -17,7 +17,7 @@ namespace Content.Server.GameTicking.Commands public void Execute(IConsoleShell shell, string argStr, string[] args) { - if (args.Length is <= 1 or >= 3) + if (args.Length is < 1 or > 3) { shell.WriteError(Loc.GetString("shell-need-between-arguments", ("lower", 1), ("upper", 3), ("currentAmount", args.Length))); return;