Files
crystall-punk-14/Content.Client/Ghost/Commands/ToggleGhostVisibilityCommand.cs

19 lines
567 B
C#
Raw Normal View History

using Robust.Shared.Console;
namespace Content.Client.Ghost.Commands;
public sealed class ToggleGhostVisibilityCommand : LocalizedEntityCommands
{
[Dependency] private readonly GhostSystem _ghost = default!;
public override string Command => "toggleghostvisibility";
public override void Execute(IConsoleShell shell, string argStr, string[] args)
{
if (args.Length != 0 && bool.TryParse(args[0], out var visibility))
_ghost.ToggleGhostVisibility(visibility);
else
_ghost.ToggleGhostVisibility();
}
}