mirror of
https://github.com/GeyserMC/MCProtocolLib.git
synced 2024-12-04 21:01:02 -05:00
Added 1.10/1.11 particles.
This commit is contained in:
parent
d4e40375e9
commit
897b7fa29f
2 changed files with 7 additions and 1 deletions
|
@ -673,6 +673,9 @@ public class MagicValues {
|
|||
register(Particle.END_ROD, 43);
|
||||
register(Particle.DAMAGE_INDICATOR, 44);
|
||||
register(Particle.SWEEP_ATTACK, 45);
|
||||
register(Particle.FALLING_DUST, 46);
|
||||
register(Particle.TOTEM, 47);
|
||||
register(Particle.SPIT, 48);
|
||||
|
||||
register(NoteBlockValueType.HARP, 0);
|
||||
register(NoteBlockValueType.DOUBLE_BASS, 1);
|
||||
|
|
|
@ -46,7 +46,10 @@ public enum Particle {
|
|||
DRAGON_BREATH,
|
||||
END_ROD,
|
||||
DAMAGE_INDICATOR,
|
||||
SWEEP_ATTACK;
|
||||
SWEEP_ATTACK,
|
||||
FALLING_DUST,
|
||||
SPIT,
|
||||
TOTEM;
|
||||
|
||||
private int dataLength;
|
||||
|
||||
|
|
Loading…
Reference in a new issue