1
0
mirror of https://github.com/Minestom/Minestom.git synced 2025-03-29 23:16:01 +01:00

Merge pull request 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);
}
}