Remove address from throttle hashmap before killing socket. Fixes BUKKIT-659
This commit is contained in:
parent
e3363db0a9
commit
e98cfbd992
@ -157,9 +157,10 @@ public class NetLoginHandler extends NetHandler {
|
|||||||
String s = pingEvent.getMotd() + "\u00A7" + this.server.serverConfigurationManager.getPlayerCount() + "\u00A7" + pingEvent.getMaxPlayers();
|
String s = pingEvent.getMotd() + "\u00A7" + this.server.serverConfigurationManager.getPlayerCount() + "\u00A7" + pingEvent.getMaxPlayers();
|
||||||
// CraftBukkit end
|
// CraftBukkit end
|
||||||
|
|
||||||
|
this.server.networkListenThread.a(this.networkManager.getSocket()); // CraftBukkit - cleanup before killing connection
|
||||||
this.networkManager.queue(new Packet255KickDisconnect(s));
|
this.networkManager.queue(new Packet255KickDisconnect(s));
|
||||||
this.networkManager.d();
|
this.networkManager.d();
|
||||||
this.server.networkListenThread.a(this.networkManager.getSocket());
|
// this.server.networkListenThread.a(this.networkManager.getSocket()); // CraftBukkit - moved up
|
||||||
this.c = true;
|
this.c = true;
|
||||||
} catch (Exception exception) {
|
} catch (Exception exception) {
|
||||||
exception.printStackTrace();
|
exception.printStackTrace();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user