Files

18 lines
519 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);
}
public override CompletionResult GetCompletion(IConsoleShell shell, string[] args)
{
return HelpCommand.GetCompletionStatic(shell, args);
}
}