mirror of
https://github.com/GeyserMC/MCProtocolLib.git
synced 2024-11-14 19:34:58 -05:00
Add ArmadilloState.UNROLLING and new EntityEvents
This commit is contained in:
parent
80250660f9
commit
1e053f0daf
2 changed files with 5 additions and 2 deletions
|
@ -64,7 +64,9 @@ public enum EntityEvent {
|
||||||
MAKE_POOF_PARTICLES,
|
MAKE_POOF_PARTICLES,
|
||||||
WARDEN_RECEIVE_SIGNAL,
|
WARDEN_RECEIVE_SIGNAL,
|
||||||
WARDEN_SONIC_BOOM,
|
WARDEN_SONIC_BOOM,
|
||||||
SNIFFER_MAKE_SOUND;
|
SNIFFER_MAKE_SOUND,
|
||||||
|
ARMADILLO_PEEKING,
|
||||||
|
LIVING_EQUIPMENT_BREAK_BODY;
|
||||||
|
|
||||||
private static final EntityEvent[] VALUES = values();
|
private static final EntityEvent[] VALUES = values();
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,8 @@ package org.geysermc.mcprotocollib.protocol.data.game.entity.metadata;
|
||||||
public enum ArmadilloState {
|
public enum ArmadilloState {
|
||||||
IDLE,
|
IDLE,
|
||||||
ROLLING,
|
ROLLING,
|
||||||
SCARED;
|
SCARED,
|
||||||
|
UNROLLING;
|
||||||
|
|
||||||
private static final ArmadilloState[] VALUES = values();
|
private static final ArmadilloState[] VALUES = values();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue