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); } }