Fix bare ">" command exception.

This commit is contained in:
Pieter-Jan Briers
2023-06-02 22:59:28 +02:00
parent cf86c7a8b5
commit 7b23729f94
2 changed files with 2 additions and 2 deletions

View File

@@ -43,7 +43,7 @@ END TEMPLATE-->
### Bugfixes
*None yet*
* Fix exception if running the `>` command (remote execute) without even a space after it.
### Other

View File

@@ -312,7 +312,7 @@ namespace Robust.Client.Console
public override void Execute(IConsoleShell shell, string argStr, string[] args)
{
shell.RemoteExecuteCommand(argStr["> ".Length..]);
shell.RemoteExecuteCommand(argStr[">".Length..]);
}
public override async ValueTask<CompletionResult> GetCompletionAsync(