Fix users being disconnected without the event q_q

This commit is contained in:
md_5 2013-04-12 12:43:17 +10:00
parent 0c144c38db
commit b87fff2614

View File

@ -57,6 +57,7 @@ public class InitialHandler extends PacketHandler implements PendingConnection
private PacketFDEncryptionRequest request;
private List<PacketFAPluginMessage> loginMessages = new ArrayList<>();
private State thisState = State.HANDSHAKE;
private boolean disconnected;
private enum State
{
@ -184,6 +185,10 @@ public class InitialHandler extends PacketHandler implements PendingConnection
{
disconnect( event.getCancelReason() );
}
if ( disconnected )
{
return;
}
Cipher encrypt = EncryptionUtil.getCipher( Cipher.ENCRYPT_MODE, shared );
Cipher decrypt = EncryptionUtil.getCipher( Cipher.DECRYPT_MODE, shared );
@ -223,6 +228,7 @@ public class InitialHandler extends PacketHandler implements PendingConnection
{
ch.write( new PacketFFKick( reason ) );
ch.close();
disconnected = true;
}
}