* i'm just gonna put this here. * I'm just gonna do it. * Update ShowHTNCommand.cs * I feel dumb. * may as well with this too. * this does in fact not work * :/
16 lines
385 B
C#
16 lines
385 B
C#
using Robust.Shared.Console;
|
|
|
|
namespace Content.Client.Decals;
|
|
|
|
public sealed class ToggleDecalCommand : LocalizedEntityCommands
|
|
{
|
|
[Dependency] private readonly DecalSystem _decal = default!;
|
|
|
|
public override string Command => "toggledecals";
|
|
|
|
public override void Execute(IConsoleShell shell, string argStr, string[] args)
|
|
{
|
|
_decal.ToggleOverlay();
|
|
}
|
|
}
|