Files
OldThink/Content.Server/Administration/Commands/ShowGhostsCommand.cs
2025-03-21 02:20:37 +05:00

35 lines
1.1 KiB
C#

using Content.Server.Ghost;
using Content.Server.Revenant.EntitySystems;
using Content.Shared.Administration;
using Robust.Shared.Console;
namespace Content.Server.Administration.Commands
{
[AdminCommand(AdminFlags.Admin)]
public sealed class ShowGhostsCommand : IConsoleCommand
{
[Dependency] private readonly IEntityManager _entities = default!;
public string Command => "showghosts";
public string Description => "makes all of the currently present ghosts visible. Cannot be reversed.";
public string Help => "showghosts <visible>";
public void Execute(IConsoleShell shell, string argStr, string[] args)
{
if (args.Length != 1)
{
shell.WriteError(Loc.GetString("shell-wrong-arguments-number"));
return;
}
if (!bool.TryParse(args[0], out var visible))
{
shell.WriteError(Loc.GetString("shell-invalid-bool"));
return;
}
_entities.System<GhostSystem>().MakeVisible(visible);
}
}
}