This commit is contained in:
2022-05-23 20:18:53 +03:00
parent 760a840cc7
commit 363c85d0b3
11 changed files with 176 additions and 11 deletions

View File

@@ -193,6 +193,15 @@ namespace DiscordBot
}
if (name == "DBUI")
{
Console.WriteLine("Reload with GUI ?[y/n]");
if (Console.ReadKey().Key == ConsoleKey.Y)
{
Process.Start("./DiscordBotGUI.exe");
Environment.Exit(0);
}
}
}
Console.WriteLine();
break;