From 5948993346061af9dae3cad3c20e9435afaf88a1 Mon Sep 17 00:00:00 2001 From: Pyrbu Date: Sat, 26 Aug 2023 22:19:58 +0200 Subject: [PATCH] remove using_item from default properties since it does nothing for most types --- plugin/src/main/java/lol/pyr/znpcsplus/npc/NpcTypeImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/src/main/java/lol/pyr/znpcsplus/npc/NpcTypeImpl.java b/plugin/src/main/java/lol/pyr/znpcsplus/npc/NpcTypeImpl.java index 6c42efe..b22810a 100644 --- a/plugin/src/main/java/lol/pyr/znpcsplus/npc/NpcTypeImpl.java +++ b/plugin/src/main/java/lol/pyr/znpcsplus/npc/NpcTypeImpl.java @@ -109,7 +109,7 @@ public class NpcTypeImpl implements NpcType { public NpcTypeImpl build() { ServerVersion version = PacketEvents.getAPI().getServerManager().getVersion(); addProperties("fire", "invisible", "silent", "look", - "using_item", "potion_color", "potion_ambient", "dinnerbone"); + "potion_color", "potion_ambient", "dinnerbone"); if (version.isNewerThanOrEquals(ServerVersion.V_1_9)) addProperties("glow"); if (version.isNewerThanOrEquals(ServerVersion.V_1_14)) { addProperties("pose");