From 78ae65cd5863f69bc79908e7c253b74152d6692b Mon Sep 17 00:00:00 2001 From: fullwall Date: Mon, 29 Apr 2024 23:12:31 +0800 Subject: [PATCH] Remove entity pose metadata --- src/main/java/net/citizensnpcs/api/npc/NPC.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main/java/net/citizensnpcs/api/npc/NPC.java b/src/main/java/net/citizensnpcs/api/npc/NPC.java index ff262b01..8cfbf5fd 100644 --- a/src/main/java/net/citizensnpcs/api/npc/NPC.java +++ b/src/main/java/net/citizensnpcs/api/npc/NPC.java @@ -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. */