From 3a3707d2a2283ebb3f202708c98f9ba52ee499a7 Mon Sep 17 00:00:00 2001 From: Kowlin <10947836+Kowlin@users.noreply.github.com> Date: Tue, 23 Dec 2025 06:59:36 +0100 Subject: [PATCH] Fix Setgamepreset (#41963) --- Content.Server/GameTicking/Commands/SetGamePresetCommand.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.52.0