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 081c8f6..1a0bb5f 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 @@ -132,7 +132,7 @@ public class ArmorSet { for (Config cfg : this.getConfig().getSubsections("advancedEffects")) { ConfiguredEffect conf = Effects.compile(cfg, "Armor Set " + this.name + " (Advanced)"); if (conf != null) { - effects.add(conf); + advancedEffects.add(conf); } }