From 6eff7a3b6c85481741b6a7a432a63b2fca6478c4 Mon Sep 17 00:00:00 2001 From: Pyrbu Date: Sat, 5 Aug 2023 00:28:55 +0200 Subject: [PATCH] remove already implemented properties from the comment --- .../znpcsplus/entity/EntityPropertyRegistryImpl.java | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/plugin/src/main/java/lol/pyr/znpcsplus/entity/EntityPropertyRegistryImpl.java b/plugin/src/main/java/lol/pyr/znpcsplus/entity/EntityPropertyRegistryImpl.java index bea8614..8d7d76f 100644 --- a/plugin/src/main/java/lol/pyr/znpcsplus/entity/EntityPropertyRegistryImpl.java +++ b/plugin/src/main/java/lol/pyr/znpcsplus/entity/EntityPropertyRegistryImpl.java @@ -55,23 +55,11 @@ public class EntityPropertyRegistryImpl implements EntityPropertyRegistry { registerEnumSerializer(VillagerProfession.class); registerEnumSerializer(VillagerLevel.class); /* - registerType("glow", NamedTextColor.class); - registerType("fire", false); - registerType("invisible", false); registerType("silent", false); - registerType("skin", SkinDescriptor.class); registerType("name", Component.class); registerType("look", false); registerType("dinnerbone", false); - // TODO: make all of these bukkit itemstack classes so api users wont have to add packetevents as a dependency - registerType("helmet", ItemStack.class); - registerType("chestplate", ItemStack.class); - registerType("leggings", ItemStack.class); - registerType("boots", ItemStack.class); - registerType("hand", ItemStack.class); - registerType("offhand", ItemStack.class); - registerType("using_item", false); // TODO: fix it for 1.8 and add new property to use offhand item and riptide animation registerType("potion_color", Color.BLACK); registerType("potion_ambient", false);