Clarifications and fixes for other commits

This commit is contained in:
Auxilor
2023-07-31 15:14:01 +02:00
parent 8335f6bae5
commit 18ea6cc568
2 changed files with 5 additions and 5 deletions

View File

@@ -389,7 +389,7 @@ abstract class EcoSpigotPlugin : EcoPlugin() {
override fun loadListeners(): List<Listener> { override fun loadListeners(): List<Listener> {
val listeners = mutableListOf( val listeners = mutableListOf(
ArmorListener(), ArmorListener(),
EntityDeathByEntityListener, EntityDeathByEntityListeners,
CraftingRecipeListener(this), CraftingRecipeListener(this),
StackedRecipeListener(this), StackedRecipeListener(this),
GUIListener(this), GUIListener(this),

View File

@@ -103,7 +103,7 @@ playerflow: true
# items that have no meta, then you can enable this option. # items that have no meta, then you can enable this option.
display-without-meta: false display-without-meta: false
# If eco should make sure its recipes are not affected by other plugins on PrepareCraftItemEvent # If eco should enforce its recipes against other plugins. Turn this on if use custom items from
# Turn this on if you use ItemsAdder/Oraxen/Other 3d party plugins custom items in eco recipes # non eco-based plugins in recipes and are encountering issues with invisible items or similar.
# And having issues with the item being invisible when you are trying to craft ir. # This may cause issues with other plugins, so only enable this if you're having issues.
enforce-preparing-recipes: false enforce-preparing-recipes: false