Don't send a Kick during the STATUS protocol as it doesn't support it
This commit is contained in:
parent
f9773a69c3
commit
76052b92d3
@ -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 );
|
||||||
|
Loading…
Reference in New Issue
Block a user