Maurice Eisenblätter
Maurice Eisenblätter
This is a well know issue with SimpleScore either remove the plugin or report it to the SimpleScore authors.
Might be related to #2545
That's not what I meant, If your using any plugin that listens for chunk packets async then it's related to #2545. For example some advanced anti-cheats are doing that so...
It looks like you didn't use the latest dev build in your log, but you checked the 'not solved in the latest dev build' checkbox, so it's unclear if you...
Should be fixed in the latest dev build so please use the latest dev build and try again: https://ci.dmulloy2.net/job/ProtocolLib/
Please ensure that you have installed the correct version of ProtocolLib for AdvancedMobArena. It seems that AdvancedMobArena is trying to call a method that doesn't exist in the version of...
I just tried it and it works fine for me with the latest dev build: ```java protocolManager.addPacketListener(new PacketAdapter(this, PacketType.Handshake.Client.SET_PROTOCOL) { @Override public void onPacketReceiving(PacketEvent event) { System.out.println(event); System.out.println(event.getPacket().getClientIntents().readSafely(0)); event.setCancelled(true); }...
Are you using a clean spigot server to test this because it works fine for me? As you can see in the code the packet won't get processed if cancelled:...
That's not what I'm asking, I'm asking you to please confirm if this issue also occurs on a freshly setup spigot/paper 1.20.4 server without any other plugins than ProtocolLib and...
The exception you are encountering is expected behavior due to the client sending the status request packet immediately after the handshake packet. This sequence cannot be processed by the handshake...