mirror of
https://github.com/ViaVersion/ViaVersion.git
synced 2024-11-26 20:16:02 +01:00
Reimplement effect indicator
This commit is contained in:
parent
eee1fd941e
commit
7694d311d1
@ -210,7 +210,15 @@ public class EntityPackets {
|
|||||||
map(Type.BYTE); // 1 - Effect ID
|
map(Type.BYTE); // 1 - Effect ID
|
||||||
map(Type.BYTE); // 2 - Amplifier
|
map(Type.BYTE); // 2 - Amplifier
|
||||||
map(Type.VAR_INT); // 3 - Duration
|
map(Type.VAR_INT); // 3 - Duration
|
||||||
map(Type.BOOLEAN, Type.BYTE); // 4 - Hide particles
|
handler(new PacketHandler() { //Handle effect indicator
|
||||||
|
@Override
|
||||||
|
public void handle(PacketWrapper wrapper) throws Exception {
|
||||||
|
boolean showParticles = wrapper.read(Type.BOOLEAN); //In 1.8 = true->Show particles : false->Hide particles
|
||||||
|
boolean newEffect = ViaVersion.getConfig().isNewEffectIndicator();
|
||||||
|
//0: hide, 1: shown without indictator, 2: shown with indicator, 3: hide with beacon indicator but we don't use it.
|
||||||
|
wrapper.write(Type.BYTE, (byte) (showParticles ? newEffect ? 2 : 1 : 0));
|
||||||
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user