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