We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b5f784 commit 87aa26cCopy full SHA for 87aa26c
src/main/java/lol/hyper/toolstats/tools/ItemChecker.java
@@ -47,9 +47,6 @@ public ItemChecker() {
47
if (lowerCase.contains("_helmet") || lowerCase.contains("_chestplate") || lowerCase.contains("_leggings") || lowerCase.contains("_boots")) {
48
armorItems.add(material);
49
}
50
- if (lowerCase.equalsIgnoreCase("mace")) {
51
- meleeItems.add(material);
52
- }
53
54
55
// hardcode these
@@ -59,6 +56,7 @@ public ItemChecker() {
59
56
validItems.add(Material.FISHING_ROD);
60
57
validItems.add(Material.CROSSBOW);
61
58
validItems.add(Material.ELYTRA);
+ validItems.add(Material.MACE);
62
63
// combine the lists
64
validItems.addAll(armorItems);
0 commit comments