From 8a3b7f30bf2dab60a008ba3fe83b3bd730ff0040 Mon Sep 17 00:00:00 2001 From: JuiceyBeans <75553966+JuiceyBeans@users.noreply.github.com> Date: Sun, 29 Sep 2024 02:14:14 +0100 Subject: [PATCH] Fix deepslate bricks slab saw recipe --- .../gtceu/data/recipe/configurable/RecipeAddition.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/gregtechceu/gtceu/data/recipe/configurable/RecipeAddition.java b/src/main/java/com/gregtechceu/gtceu/data/recipe/configurable/RecipeAddition.java index 4bf389c1d8..5001c59f48 100644 --- a/src/main/java/com/gregtechceu/gtceu/data/recipe/configurable/RecipeAddition.java +++ b/src/main/java/com/gregtechceu/gtceu/data/recipe/configurable/RecipeAddition.java @@ -1528,7 +1528,7 @@ private static void removeVanillaBlockRecipes(Consumer provider) VanillaRecipeHelper.addShapedRecipe(provider, "polished_deepslate_slab_saw", new ItemStack(Blocks.POLISHED_DEEPSLATE_SLAB), "sS", 'S', new ItemStack(Blocks.POLISHED_DEEPSLATE)); VanillaRecipeHelper.addShapedRecipe(provider, "deepslate_brick_slab_saw", - new ItemStack(Blocks.DEEPSLATE_BRICKS), "sS", 'S', new ItemStack(Blocks.DEEPSLATE_BRICK_SLAB)); + new ItemStack(Blocks.DEEPSLATE_BRICK_SLAB), "sS", 'S', new ItemStack(Blocks.DEEPSLATE_BRICKS )); VanillaRecipeHelper.addShapedRecipe(provider, "deepslate_tile_slab_saw", new ItemStack(Blocks.DEEPSLATE_TILE_SLAB), "sS", 'S', new ItemStack(Blocks.DEEPSLATE_TILES)); }