From 02d7f746e90bc644825569dd529e01d22349d201 Mon Sep 17 00:00:00 2001 From: Frank Date: Sun, 10 Jul 2022 22:45:37 +0200 Subject: [PATCH] [Fix] Removed duplicate hopper recipe entry --- .../java/org/betterx/bclib/recipes/CraftingRecipes.java | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/main/java/org/betterx/bclib/recipes/CraftingRecipes.java b/src/main/java/org/betterx/bclib/recipes/CraftingRecipes.java index fca78723..9976b72a 100644 --- a/src/main/java/org/betterx/bclib/recipes/CraftingRecipes.java +++ b/src/main/java/org/betterx/bclib/recipes/CraftingRecipes.java @@ -71,13 +71,6 @@ public class CraftingRecipes { .checkConfig(Configs.RECIPE_CONFIG) .build(); - GridRecipe.make(BCLib.MOD_ID, "tag_hopper", Blocks.HOPPER) - .setShape("I I", "ICI", " I ") - .addMaterial('I', CommonItemTags.IRON_INGOTS) - .addMaterial('C', CommonItemTags.CHEST) - .checkConfig(Configs.RECIPE_CONFIG) - .build(); - GridRecipe.make(BCLib.MOD_ID, "tag_shulker_box", Blocks.SHULKER_BOX) .setShape("S", "C", "S") .addMaterial('S', Items.SHULKER_SHELL)