Files
RobustToolbox/Robust.Shared/Console/Commands/OldHelpCommand.cs
974c1e827d Change a bunch of static Loc.GetString calls to be properly resolved (#6010)
* Add Loc shortcut to LocalizedCommands

* Fix static methods in commands

---------

Co-authored-by: PJB3005 <pieterjan.briers+git@gmail.com>
2025-07-22 20:33:43 +02:00

18 lines
529 B
C#

namespace Robust.Shared.Console.Commands;
public sealed class OldHelpCommand : LocalizedCommands
{
public override string Command => "oldhelp";
public override void Execute(IConsoleShell shell, string argStr, string[] args)
{
// For the people that got used to oldhelp
HelpCommand.ExecuteStatic(shell, argStr, args, Loc);
}
public override CompletionResult GetCompletion(IConsoleShell shell, string[] args)
{
return HelpCommand.GetCompletionStatic(shell, args, Loc);
}
}