fixed empty command not found message

This commit is contained in:
2023-02-22 10:07:30 +01:00
parent f0f484268b
commit 43bbd5d032

View File

@@ -48,7 +48,7 @@ public partial class console : PopupPanel
{
Call(command.ToLower());
}
else textblock.AddText(error);
else if (command.Length != 0) textblock.AddText(error);
}