SmoothCoasters

SmoothCoasters

46.5k Downloads

Breaks when sending the custom payload packet in a Bundle packet

bergerkiller opened this issue ยท 1 comments

commented

In TrainCarts it implements the SmoothCoastersAPI NetworkInterface to handle the packet sending in place of the default handler. With 1.19.4 my handler packs these packets inside Bundle packets, and for whatever reason this caused an occasional incompatibility.

https://github.com/bergerhealer/TrainCarts/blob/master/src/main/java/com/bergerkiller/bukkit/tc/controller/global/PacketQueue.java#L143

When some SmoothCoasters update packets are sent inside bundles and others are not, it seems sometimes the packets either don't arrive at the client or they arrive at the wrong order. I had a weird bug because of it that a player's first-person rotation did not reset after exiting from the seat. Likely because an in-flight update packet was received by the client after the reset, or that the reset rotation packets were all dropped.

I verified through intense debugging that this wasn't on my end, and the Bundle packet and the rotation reset packets were all sent to the player.

commented

Fixed in 7092552 and bergerhealer/SmoothCoastersAPI@5dfc23d.

Added protocol V5 to the mod (exactly the same as V4, it simply tells the server that no workaround is needed).
If the version is V4, the supplied NetworkInterface should not use bundle packets.