only start listening for clients once everything is initialized

Otherwise clients might connect to the server before everything is ready for them.

E.g. when restarting the server, the clients will immediately try to reconnect.

Clients might connect before the `PacketHandler` is initialized, which results in some packets not being processed by the server.

Same goes for the commands: Discord or the JsonApi might send in commands before all commands were added to the `CommandHandler`.

Without the `ClientJoined` action, clients might even be allowed connect if they are on the banlist.
This commit is contained in:
Robin C. Ladiges 2022-09-05 03:56:21 +02:00
parent 87cec91941
commit 92e540aaa6
No known key found for this signature in database
GPG Key ID: B494D3DF92661B99
1 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,6 @@ Server.Server server = new Server.Server();
HashSet<int> shineBag = new HashSet<int>();
CancellationTokenSource cts = new CancellationTokenSource();
bool restartRequested = false;
Task listenTask = server.Listen(cts.Token);
Logger consoleLogger = new Logger("Console");
DiscordBot bot = new DiscordBot();
await bot.Run();
@ -655,7 +654,8 @@ Task.Run(() => {
}).ContinueWith(x => { if (x.Exception != null) { consoleLogger.Error(x.Exception.ToString()); } });
#pragma warning restore CS4014
await listenTask;
await server.Listen(cts.Token);
if (restartRequested) //need to do this here because this needs to happen after the listener closes, and there isn't an
//easy way to sync in the restartserver command without it exiting Main()
{