Fixed some display bugs

This commit is contained in:
2022-07-06 13:56:04 +03:00
parent 1292e0f585
commit c674c76bd0
3 changed files with 19 additions and 4 deletions

View File

@@ -78,7 +78,8 @@ public class Program
{
Console.ForegroundColor = ConsoleColor.White;
var cmd = Console.ReadLine();
consoleCommandsHandler.HandleCommand(cmd);
if (!consoleCommandsHandler.HandleCommand(cmd))
Console.WriteLine("Failed to run command " + cmd);
}
}