Small Changes.

This commit is contained in:
Ottermandias 2023-07-19 00:37:39 +02:00
parent 808dabf600
commit 27c9523bd7
3 changed files with 6 additions and 3 deletions

View file

@ -92,7 +92,7 @@ public class CommandHandler : IDisposable
private bool PrintHelp(string arguments)
{
if (!string.Equals(arguments, "help", StringComparison.OrdinalIgnoreCase) && arguments == "?")
if (!string.Equals(arguments, "help", StringComparison.OrdinalIgnoreCase) && arguments != "?")
_chat.Print(new SeStringBuilder().AddText("The given argument ").AddRed(arguments, true)
.AddText(" is not valid. Valid arguments are:").BuiltString);
else