From 6cfe1de70923caf139f89d6d6846ee9656bdf45c Mon Sep 17 00:00:00 2001 From: Auxilor Date: Fri, 23 Jul 2021 23:43:08 +0100 Subject: [PATCH] Fixed crafting recipes not loading --- .../src/main/java/com/willfp/ecoarmor/sets/ArmorSet.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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);