Skip to content

Commit

Permalink
Remove entity pose metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
fullwall committed Apr 29, 2024
1 parent 91bc186 commit 78ae65c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main/java/net/citizensnpcs/api/npc/NPC.java
Expand Up @@ -463,12 +463,14 @@ public enum Metadata {
* Whether the NPC is 'protected' i.e. invulnerable to damage.
*/
DEFAULT_PROTECTED("protected", Boolean.class),
/**
* Whether to disable the default stuck action (teleport to destination is default).
*/
DISABLE_DEFAULT_STUCK_ACTION("disable-default-stuck-action", Boolean.class),
/**
* Whether the NPC drops its inventory after death.
*/
DROPS_ITEMS("drops-items", Boolean.class),
ENTITY_POSE("entity-pose", String.class),
/**
* Whether the NPC is pushable by fluids.
*/
Expand Down

0 comments on commit 78ae65c

Please sign in to comment.