Fix serverbound beacon secondary effect

This commit is contained in:
Nassim Jahnke 2023-09-28 09:36:30 +10:00
parent 8e6727c350
commit cc7df5a4fc
No known key found for this signature in database
GPG Key ID: EF6771C01F6EF02F

View File

@ -112,8 +112,11 @@ public final class BlockItemPacketRewriter1_20_2 extends ItemRewriter<Clientboun
});
protocol.registerServerbound(ServerboundPackets1_19_4.SET_BEACON_EFFECT, wrapper -> {
if (wrapper.passthrough(Type.BOOLEAN)) {
// Effects start at 1 before 1.20.2
// Effects start at 1 before 1.20.2
if (wrapper.passthrough(Type.BOOLEAN)) { // Primary effect
wrapper.write(Type.VAR_INT, wrapper.read(Type.VAR_INT) - 1);
}
if (wrapper.passthrough(Type.BOOLEAN)) { // Secondary effect
wrapper.write(Type.VAR_INT, wrapper.read(Type.VAR_INT) - 1);
}
});