diff --git a/eco-core/core-plugin/src/main/java/com/willfp/ecoarmor/sets/ArmorSet.java b/eco-core/core-plugin/src/main/java/com/willfp/ecoarmor/sets/ArmorSet.java index 88c9d92..0b16b6b 100644 --- a/eco-core/core-plugin/src/main/java/com/willfp/ecoarmor/sets/ArmorSet.java +++ b/eco-core/core-plugin/src/main/java/com/willfp/ecoarmor/sets/ArmorSet.java @@ -159,9 +159,7 @@ public class ArmorSet { for (ArmorSlot slot : ArmorSlot.values()) { ItemStack item = construct(slot, (JSONConfig) this.getConfig().getSubsection(slot.name().toLowerCase()), false); items.put(slot, item); - if (this.getConfig().getBool("enabled")) { - constructRecipe(slot, this.getConfig().getSubsection(slot.name().toLowerCase()), item); - } + constructRecipe(slot, this.getConfig().getSubsection(slot.name().toLowerCase()), item); ItemStack advancedItem = construct(slot, (JSONConfig) this.getConfig().getSubsection(slot.name().toLowerCase()), true); advancedItems.put(slot, advancedItem);