Adds readyall (b)admin command.
This commit is contained in:
39
Content.Server/Administration/ReadyAll.cs
Normal file
39
Content.Server/Administration/ReadyAll.cs
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
using Content.Server.GameTicking;
|
||||||
|
using Content.Server.Interfaces.GameTicking;
|
||||||
|
using Robust.Server.Interfaces.Console;
|
||||||
|
using Robust.Server.Interfaces.Player;
|
||||||
|
using Robust.Shared.IoC;
|
||||||
|
|
||||||
|
namespace Content.Server.Administration
|
||||||
|
{
|
||||||
|
public class ReadyAll : IClientCommand
|
||||||
|
{
|
||||||
|
public string Command => "readyall";
|
||||||
|
public string Description => "Readies up all players in the lobby.";
|
||||||
|
public string Help => $"{Command} | ̣{Command} <ready>";
|
||||||
|
public void Execute(IConsoleShell shell, IPlayerSession? player, string[] args)
|
||||||
|
{
|
||||||
|
var ready = true;
|
||||||
|
|
||||||
|
if (args.Length > 0)
|
||||||
|
{
|
||||||
|
ready = bool.Parse(args[0]);
|
||||||
|
}
|
||||||
|
|
||||||
|
var gameTicker = IoCManager.Resolve<IGameTicker>();
|
||||||
|
var playerManager = IoCManager.Resolve<IPlayerManager>();
|
||||||
|
|
||||||
|
|
||||||
|
if (gameTicker.RunLevel != GameRunLevel.PreRoundLobby)
|
||||||
|
{
|
||||||
|
shell.SendText(player, "This command can only be ran while in the lobby!");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
foreach (var p in playerManager.GetAllPlayers())
|
||||||
|
{
|
||||||
|
gameTicker.ToggleReady(p, ready);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -96,6 +96,7 @@
|
|||||||
- tilewalls
|
- tilewalls
|
||||||
- events
|
- events
|
||||||
- destroymechanism
|
- destroymechanism
|
||||||
|
- readyall
|
||||||
CanViewVar: true
|
CanViewVar: true
|
||||||
CanAdminPlace: true
|
CanAdminPlace: true
|
||||||
|
|
||||||
@@ -186,6 +187,7 @@
|
|||||||
- tilewalls
|
- tilewalls
|
||||||
- events
|
- events
|
||||||
- destroymechanism
|
- destroymechanism
|
||||||
|
- readyall
|
||||||
CanViewVar: true
|
CanViewVar: true
|
||||||
CanAdminPlace: true
|
CanAdminPlace: true
|
||||||
CanScript: true
|
CanScript: true
|
||||||
|
|||||||
Reference in New Issue
Block a user