From 7e4422f6e22103a427b9b0cf0e84614cf4e3da78 Mon Sep 17 00:00:00 2001 From: Auxilor Date: Thu, 2 Dec 2021 14:50:04 +0000 Subject: [PATCH] Fixed ShapedCraftingRecipe on 1.18 --- .../willfp/eco/core/recipe/recipes/ShapedCraftingRecipe.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eco-api/src/main/java/com/willfp/eco/core/recipe/recipes/ShapedCraftingRecipe.java b/eco-api/src/main/java/com/willfp/eco/core/recipe/recipes/ShapedCraftingRecipe.java index ca26d4f6..0f83b591 100644 --- a/eco-api/src/main/java/com/willfp/eco/core/recipe/recipes/ShapedCraftingRecipe.java +++ b/eco-api/src/main/java/com/willfp/eco/core/recipe/recipes/ShapedCraftingRecipe.java @@ -113,7 +113,7 @@ public final class ShapedCraftingRecipe extends PluginDependent imple displayedRecipe.setIngredient(character, new RecipeChoice.ExactChoice(item)); } - if (Prerequisite.HAS_1_18.isMet()) { + if (Prerequisite.HAS_1_18.isMet() && !Prerequisite.HAS_PAPER.isMet()) { if (Bukkit.getServer().getRecipe(this.getKey()) != null) { return; }