mirror of
https://github.com/GeyserMC/MCProtocolLib.git
synced 2024-12-04 12:51:09 -05:00
Add new particle types
This commit is contained in:
parent
f1efbed86c
commit
328f020489
2 changed files with 9 additions and 1 deletions
|
@ -878,6 +878,10 @@ public class MagicValues {
|
|||
register(ParticleType.DOLPHIN, 55);
|
||||
register(ParticleType.CAMPFIRE_COSY_SMOKE, 56);
|
||||
register(ParticleType.CAMPFIRE_SIGNAL_SMOKE, 57);
|
||||
register(ParticleType.DRIPPING_HONEY, 58);
|
||||
register(ParticleType.FALLING_HONEY, 59);
|
||||
register(ParticleType.LANDING_HONEY, 60);
|
||||
register(ParticleType.FALLING_NECTAR, 61);
|
||||
|
||||
register(NoteBlockValueType.HARP, 0);
|
||||
register(NoteBlockValueType.DOUBLE_BASS, 1);
|
||||
|
|
|
@ -58,5 +58,9 @@ public enum ParticleType {
|
|||
NAUTILUS,
|
||||
DOLPHIN,
|
||||
CAMPFIRE_COSY_SMOKE,
|
||||
CAMPFIRE_SIGNAL_SMOKE;
|
||||
CAMPFIRE_SIGNAL_SMOKE,
|
||||
DRIPPING_HONEY,
|
||||
FALLING_HONEY,
|
||||
LANDING_HONEY,
|
||||
FALLING_NECTAR
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue