1
0
Fork 0
mirror of https://github.com/PaperMC/Paper.git synced 2025-04-28 22:55:09 +02:00

Check if packet is null before checking priority. Fixes BUKKIT-1579

This commit is contained in:
Travis Watkins 2012-04-25 10:34:53 -05:00
parent efab1e8b18
commit 0153fe1f33

View file

@ -720,7 +720,7 @@ public class NetServerHandler extends NetHandler implements ICommandListener {
this.networkManager.queue(new Packet3Chat(line));
}
packet = null;
} else if (packet.lowPriority == true) {
} else if (packet != null && packet.lowPriority == true) {
// Reroute all low-priority packets through to compression thread.
ChunkCompressionThread.sendPacket(this.player, packet);
packet = null;