Adds readyall (b)admin command.

This commit is contained in:
Víctor Aguilera Puerto
2020-08-20 15:19:36 +02:00
parent d8a78f2de6
commit d703dc8dcc
2 changed files with 41 additions and 0 deletions

View 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);
}
}
}
}

View File

@@ -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