This commit is contained in:
2022-05-27 12:28:55 +03:00
parent a9ce01e7c9
commit c1d0155867
6 changed files with 35 additions and 13 deletions

View File

@@ -87,7 +87,8 @@ namespace DiscordBot
while (true)
{
Console.ForegroundColor = ConsoleColor.White;
consoleCommandsHandler.HandleCommand(Console.ReadLine());
string cmd = Console.ReadLine();
consoleCommandsHandler.HandleCommand(cmd);
}
}