mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
Fix bare ">" command exception.
This commit is contained in:
@@ -43,7 +43,7 @@ END TEMPLATE-->
|
||||
|
||||
### Bugfixes
|
||||
|
||||
*None yet*
|
||||
* Fix exception if running the `>` command (remote execute) without even a space after it.
|
||||
|
||||
### Other
|
||||
|
||||
|
||||
@@ -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(
|
||||
|
||||
Reference in New Issue
Block a user