From 18ea6cc568de4639bb00a97f4a4a4193adfcd0e9 Mon Sep 17 00:00:00 2001 From: Auxilor Date: Mon, 31 Jul 2023 15:14:01 +0200 Subject: [PATCH] Clarifications and fixes for other commits --- .../com/willfp/eco/internal/spigot/EcoSpigotPlugin.kt | 2 +- eco-core/core-plugin/src/main/resources/config.yml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/eco-core/core-plugin/src/main/kotlin/com/willfp/eco/internal/spigot/EcoSpigotPlugin.kt b/eco-core/core-plugin/src/main/kotlin/com/willfp/eco/internal/spigot/EcoSpigotPlugin.kt index 7c3f4950..67664043 100644 --- a/eco-core/core-plugin/src/main/kotlin/com/willfp/eco/internal/spigot/EcoSpigotPlugin.kt +++ b/eco-core/core-plugin/src/main/kotlin/com/willfp/eco/internal/spigot/EcoSpigotPlugin.kt @@ -389,7 +389,7 @@ abstract class EcoSpigotPlugin : EcoPlugin() { override fun loadListeners(): List { val listeners = mutableListOf( ArmorListener(), - EntityDeathByEntityListener, + EntityDeathByEntityListeners, CraftingRecipeListener(this), StackedRecipeListener(this), GUIListener(this), diff --git a/eco-core/core-plugin/src/main/resources/config.yml b/eco-core/core-plugin/src/main/resources/config.yml index 65e3c05f..ed17ec4b 100644 --- a/eco-core/core-plugin/src/main/resources/config.yml +++ b/eco-core/core-plugin/src/main/resources/config.yml @@ -103,7 +103,7 @@ playerflow: true # items that have no meta, then you can enable this option. display-without-meta: false -# If eco should make sure its recipes are not affected by other plugins on PrepareCraftItemEvent -# Turn this on if you use ItemsAdder/Oraxen/Other 3d party plugins custom items in eco recipes -# And having issues with the item being invisible when you are trying to craft ir. -enforce-preparing-recipes: false \ No newline at end of file +# If eco should enforce its recipes against other plugins. Turn this on if use custom items from +# non eco-based plugins in recipes and are encountering issues with invisible items or similar. +# This may cause issues with other plugins, so only enable this if you're having issues. +enforce-preparing-recipes: false