Maurice Eisenblätter

Results 119 comments of Maurice Eisenblätter

Hey just encountered the same problem. The reason this happens is that a stored procedure can select rows as well as update rows at the same time so you need...

From the official [documentation](https://dev.mysql.com/doc/internals/en/multi-resultset.html): > As of MySQL 5.7.5, the resultset is followed by an `OK_Packet`, and this `OK_Packet` has the `SERVER_MORE_RESULTS_EXISTS` flag set to start processing the next resultset....

As we currently only support SpigotMC and no other fork I'm afraid we can't help you. If possible try switching to SpigotMC and check if the problem still occurs. We...

That technically wasn't an API, it was internal code that a plugin shouldn't depend on because it's part of the injector. The plugin used reflections to even get access to...

I disagree while both ProtocolLib and PacketEvents address similar issues, their underlying mechanics are quite different. ProtocolLib acts as a wrapper around Mojang's game objects, while PacketEvents implements specific read/write...

But why are you using reflections to set the map id? I just checked the implementation of `ItemMetaMap` and as far as I can tell it should fit your use...

The `ClientboundSetEquipmentPacket` packet doesn't contain any `ItemStack` fields but only a list of `ItemSlot` and `ItemStack`. Here is what it looks like in `1.20.4`: ```java public class ClientboundSetEquipmentPacket implements Packet...

Should be fixed in the latest dev build so please use the latest dev build and try again: https://ci.dmulloy2.net/job/ProtocolLib/lastSuccessfulBuild/

Should be fixed in the latest dev build so please use the latest dev build and try again: https://ci.dmulloy2.net/job/ProtocolLib/

This is an issue caused by another plugin and doesn't have anything to do with ProtocolLib as far as I can tell. The plugin set a field inside the `ClientboundSetObjectivePacket`...