1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-10 07:13:58 -05:00

fixes for things that should have been in the previous release

console output reenabled
server start task actually runs
This commit is contained in:
RaidMax
2019-05-09 20:00:00 -05:00
parent b14a5ced52
commit 12785d68ac
4 changed files with 15 additions and 9 deletions

View File

@ -85,6 +85,7 @@ namespace IW4MAdmin.Application
Console.WriteLine(e.Message);
Console.WriteLine(exitMessage);
Console.ReadKey();
return;
}
try
@ -113,9 +114,9 @@ namespace IW4MAdmin.Application
var tasks = new[]
{
ServerManager.Start(),
webfrontTask,
ReadConsoleInput(),
ServerManager.Start(),
};
await Task.WhenAll(tasks);