Remove address from throttle hashmap before killing socket. Fixes BUKKIT-659

This commit is contained in:
Travis Watkins 2012-04-24 16:19:49 -05:00 committed by EvilSeph
parent e3363db0a9
commit e98cfbd992

View file

@ -157,9 +157,10 @@ public class NetLoginHandler extends NetHandler {
String s = pingEvent.getMotd() + "\u00A7" + this.server.serverConfigurationManager.getPlayerCount() + "\u00A7" + pingEvent.getMaxPlayers();
// CraftBukkit end
this.server.networkListenThread.a(this.networkManager.getSocket()); // CraftBukkit - cleanup before killing connection
this.networkManager.queue(new Packet255KickDisconnect(s));
this.networkManager.d();
this.server.networkListenThread.a(this.networkManager.getSocket());
// this.server.networkListenThread.a(this.networkManager.getSocket()); // CraftBukkit - moved up
this.c = true;
} catch (Exception exception) {
exception.printStackTrace();