Lukas Alt
Lukas Alt
Use this build: https://ci.dmulloy2.net/job/ProtocolLib/679/
Please use the latest development build from here: https://ci.dmulloy2.net/job/ProtocolLib//lastBuild/ for 1.20.4 support.
Hi, please use the latest development build of ProtocolLib. This versions offers 1.20.4 support https://ci.dmulloy2.net/job/ProtocolLib/679/artifact/build/libs/ProtocolLib.jar
You should check the first error message which should state that the version of ProtocolLib you are using is incompatible with Minecraft 1.20.2. Use this development build for 1.20.2 support:...
Use this version of ProtocolLib: https://ci.dmulloy2.net/job/ProtocolLib//lastBuild/artifact/build/libs/ProtocolLib.jar The version you currently use is incompatible with MC 1.20.2 or later.,
Mojang follows the trend to move more and more fields of packets into separate classes. So, the chances are very high that something breaks with an update of Minecraft. And...
Is there a chance that some of your plugins are shaded/bundled with ProtocolLib, i.e. include a complete copy of ProtocolLib in their Jar File.
This if statement is probably wrong: `if (block != null) return null;` it should be `if (block == null) return null;`
The method you are using is not compatible with Minecraft 1.20.6. The Dimension Type now only holds some metadata for the world and there is no 1:1 mapping to an...
Keeping track of these changes can be really though, in particular because Mojang started restructuring the contents of the packets. I usually decompile the current version of the server and...