mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-03 13:36:44 +01:00
Fixed our handling of network packets.
This commit is contained in:
parent
194f54a90e
commit
42e473783e
1 changed files with 1 additions and 1 deletions
|
@ -223,7 +223,7 @@ public class NetworkManager {
|
||||||
while (!this.m.isEmpty() && i-- >= 0) {
|
while (!this.m.isEmpty() && i-- >= 0) {
|
||||||
Packet packet = (Packet) this.m.remove(0);
|
Packet packet = (Packet) this.m.remove(0);
|
||||||
|
|
||||||
packet.a(this.p);
|
if (!this.q) packet.a(this.p); // CraftBukkit
|
||||||
}
|
}
|
||||||
|
|
||||||
this.a();
|
this.a();
|
||||||
|
|
Loading…
Reference in a new issue