Don't send a Kick during the STATUS protocol as it doesn't support it

This commit is contained in:
Thinkofdeath 2015-05-08 20:32:12 +01:00
parent f9773a69c3
commit 76052b92d3

View File

@ -537,7 +537,10 @@ public class InitialHandler extends PacketHandler implements PendingConnection
@Override @Override
public void run() public void run()
{ {
unsafe().sendPacket( new Kick( ComponentSerializer.toString( reason ) ) ); if (thisState != State.STATUS && thisState != State.PING)
{
unsafe().sendPacket( new Kick( ComponentSerializer.toString( reason ) ) );
}
ch.close(); ch.close();
} }
}, 500, TimeUnit.MILLISECONDS ); }, 500, TimeUnit.MILLISECONDS );