From e8274c39d40a164f7a6bd3237251debcd8feeb4d Mon Sep 17 00:00:00 2001 From: Auxilor Date: Thu, 1 Jun 2023 12:25:48 +0100 Subject: [PATCH] Temporarily removed active_level --- .../src/main/kotlin/com/willfp/ecoenchants/EcoEnchantsPlugin.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eco-core/core-plugin/src/main/kotlin/com/willfp/ecoenchants/EcoEnchantsPlugin.kt b/eco-core/core-plugin/src/main/kotlin/com/willfp/ecoenchants/EcoEnchantsPlugin.kt index a37e762a..fe2edcb9 100644 --- a/eco-core/core-plugin/src/main/kotlin/com/willfp/ecoenchants/EcoEnchantsPlugin.kt +++ b/eco-core/core-plugin/src/main/kotlin/com/willfp/ecoenchants/EcoEnchantsPlugin.kt @@ -65,7 +65,7 @@ class EcoEnchantsPlugin : LibreforgePlugin() { registerHolderPlaceholderProvider { it, player -> listOf( NamedValue("level", it.level), - NamedValue("active_level", player.getActiveEnchantLevel(it.enchant)) + //NamedValue("active_level", player.getActiveEnchantLevel(it.enchant)) ) } }