Files
tbd-station-14/Content.Client/NPC/ShowHTNCommand.cs
Kyle Tyo 9d22f6147c Command resolve killing, LEC conversions, and general cleanup. (#38338)
* 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

* :/
2025-06-17 20:08:12 +02:00

17 lines
412 B
C#

using Content.Client.NPC.HTN;
using Robust.Shared.Console;
namespace Content.Client.NPC;
public sealed class ShowHtnCommand : LocalizedEntityCommands
{
[Dependency] private readonly HTNSystem _htnSystem = default!;
public override string Command => "showhtn";
public override void Execute(IConsoleShell shell, string argStr, string[] args)
{
_htnSystem.EnableOverlay ^= true;
}
}