mirror of
https://github.com/GeyserMC/MCProtocolLib.git
synced 2024-12-04 21:01:02 -05:00
Add missing 1.13 entity status
This commit is contained in:
parent
55e8d74ec3
commit
a5af5c1762
2 changed files with 3 additions and 1 deletions
|
@ -336,6 +336,7 @@ public class MagicValues {
|
|||
register(EntityStatus.TOTEM_OF_UNDYING_MAKE_SOUND, 35);
|
||||
register(EntityStatus.LIVING_DROWN, 36);
|
||||
register(EntityStatus.LIVING_BURN, 37);
|
||||
register(EntityStatus.DOLPHIN_HAPPY, 38);
|
||||
|
||||
register(PositionElement.X, 0);
|
||||
register(PositionElement.Y, 1);
|
||||
|
|
|
@ -37,5 +37,6 @@ public enum EntityStatus {
|
|||
IRON_GOLEM_EMPTY_HAND,
|
||||
TOTEM_OF_UNDYING_MAKE_SOUND,
|
||||
LIVING_DROWN,
|
||||
LIVING_BURN;
|
||||
LIVING_BURN,
|
||||
DOLPHIN_HAPPY;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue