add missing elytra to item list

This commit is contained in:
hyperdefined
2023-07-17 19:22:32 -04:00
parent be31202f65
commit 884bdef444

View File

@@ -24,7 +24,7 @@ import java.util.Locale;
public class ItemChecker { public class ItemChecker {
private static final String[] validItems = { "pickaxe", "sword", "shovel", "axe", "hoe", "bow", "helmet", "chestplate", "leggings", "boots", "fishing" }; private static final String[] validItems = { "pickaxe", "sword", "shovel", "axe", "hoe", "bow", "helmet", "chestplate", "leggings", "boots", "fishing", "elytra" };
private static final String[] validArmor = { "helmet", "chestplate", "leggings", "boots" }; private static final String[] validArmor = { "helmet", "chestplate", "leggings", "boots" };
private static final String[] validMelee = {"sword", "trident", "axe"}; private static final String[] validMelee = {"sword", "trident", "axe"};
private static final String[] validMine = { "pickaxe", "axe", "hoe", "shovel", "shear" }; private static final String[] validMine = { "pickaxe", "axe", "hoe", "shovel", "shear" };