mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-16 15:22:27 +02:00
18 lines
519 B
C#
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);
|
|
}
|
|
}
|