Merge pull request #30 from Rems19/patch-1

Fix removePlayer in ConnectionManager
This commit is contained in:
TheMode 2020-08-07 07:57:35 +02:00 committed by GitHub
commit 12ccbfc80e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -247,6 +247,6 @@ public final class ConnectionManager {
return;
this.players.remove(player);
this.connectionPlayerMap.remove(player);
this.connectionPlayerMap.remove(connection);
}
}