From 68f38a82697c7e067aee8dd1328fff87cc6e53e7 Mon Sep 17 00:00:00 2001 From: BIGZi0348 Date: Sat, 1 Mar 2025 00:08:55 +0300 Subject: [PATCH] easy --- .../Administration/Commands/ReadyAll.cs | 27 ++++++++++--------- 1 file changed, 14 insertions(+), 13 deletions(-) diff --git a/Content.Server/Administration/Commands/ReadyAll.cs b/Content.Server/Administration/Commands/ReadyAll.cs index 530ba0e89c..4eddfc46b5 100644 --- a/Content.Server/Administration/Commands/ReadyAll.cs +++ b/Content.Server/Administration/Commands/ReadyAll.cs @@ -11,27 +11,28 @@ namespace Content.Server.Administration.Commands [Dependency] private readonly IEntityManager _e = default!; public string Command => "readyall"; - public string Description => "Readies up all players in the lobby, except for observers."; + public string Description => "WD Disabled. Readies up all players in the lobby, except for observers."; public string Help => $"{Command} | ̣{Command} "; public void Execute(IConsoleShell shell, string argStr, string[] args) { - var ready = true; + // WD Disabled + // var ready = true; - if (args.Length > 0) - { - ready = bool.Parse(args[0]); - } + // if (args.Length > 0) + // { + // ready = bool.Parse(args[0]); + // } - var gameTicker = _e.System(); + // var gameTicker = _e.System(); - if (gameTicker.RunLevel != GameRunLevel.PreRoundLobby) - { - shell.WriteLine("This command can only be ran while in the lobby!"); - return; - } + // if (gameTicker.RunLevel != GameRunLevel.PreRoundLobby) + // { + // shell.WriteLine("This command can only be ran while in the lobby!"); + // return; + // } - gameTicker.ToggleReadyAll(ready); + // gameTicker.ToggleReadyAll(ready); } } }