We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 250f6db commit b8085b1Copy full SHA for b8085b1
Runtime/DevConsoleMono.cs
@@ -1455,7 +1455,7 @@ private void InitBuiltInCommands()
1455
1456
if (!string.IsNullOrEmpty(command.HelpText))
1457
{
1458
- Log(command.HelpText + ".");
+ Log($"{command.HelpText}.");
1459
}
1460
1461
if (command.Aliases?.Length > 0 && command.Aliases.Any(a => !string.IsNullOrEmpty(a)))
@@ -1481,8 +1481,9 @@ private void InitBuiltInCommands()
1481
},
1482
() =>
1483
1484
- if (string.IsNullOrEmpty(_previousCommand) || _previousCommand.ToLower().Equals("help"))
+ if (string.IsNullOrWhiteSpace(_previousCommand) || _previousCommand.ToLower().Equals("help"))
1485
1486
+ RunCommand($"help help");
1487
return;
1488
1489
0 commit comments