mirror of
https://github.com/dmulloy2/ProtocolLib.git
synced 2024-11-09 04:09:43 +01:00
Fixed an incorrect null check.
This commit is contained in:
parent
36f867cafa
commit
9482818751
@ -540,7 +540,7 @@ public class AsyncListenerHandler {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (packet != null && packet.getAsyncMarker() == null) {
|
if (packet != null && packet.getAsyncMarker() != null) {
|
||||||
processPacket(workerID, packet, "onAsyncPacket()");
|
processPacket(workerID, packet, "onAsyncPacket()");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user