From 31b6a65d44c8c172d2415751d6efede19fa91db3 Mon Sep 17 00:00:00 2001 From: Auxilor Date: Fri, 27 Jan 2023 11:43:12 +0000 Subject: [PATCH] Moved placeholder to next version --- .../src/main/java/com/willfp/ecoskills/EcoSkillsPlugin.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eco-core/core-plugin/src/main/java/com/willfp/ecoskills/EcoSkillsPlugin.java b/eco-core/core-plugin/src/main/java/com/willfp/ecoskills/EcoSkillsPlugin.java index 966a694..94d5fc6 100644 --- a/eco-core/core-plugin/src/main/java/com/willfp/ecoskills/EcoSkillsPlugin.java +++ b/eco-core/core-plugin/src/main/java/com/willfp/ecoskills/EcoSkillsPlugin.java @@ -150,8 +150,8 @@ public class EcoSkillsPlugin extends LibReforgePlugin { public List loadAdditionalIntegrations() { return List.of( new IntegrationLoader("EcoEnchants", () -> this.getEventManager().registerListener(new EcoEnchantsEnchantingLeveller(this))), - new IntegrationLoader("EnchantGui", () -> this.getEventManager().registerListener(new EnchantGuiHandler())), - new IntegrationLoader("PlaceholderAPI", () -> new EcoSkillsTopExpansion(this).register()) + new IntegrationLoader("EnchantGui", () -> this.getEventManager().registerListener(new EnchantGuiHandler())) + //new IntegrationLoader("PlaceholderAPI", () -> new EcoSkillsTopExpansion(this).register()) ); } }