mirror of
https://github.com/ViaVersion/ViaBackwards.git
synced 2024-12-22 16:57:40 +01:00
Fix serverbound beacon secondary effect
This commit is contained in:
parent
8e6727c350
commit
cc7df5a4fc
@ -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);
|
||||
}
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user