From 5b33d3eb37522032ef3c47d788bf73062be81083 Mon Sep 17 00:00:00 2001 From: Karthi Suresh <75553966+JuiceyBeans@users.noreply.github.com> Date: Sun, 13 Oct 2024 09:19:06 +0100 Subject: [PATCH] Last minute fixes (#2165) --- .../gtceu/data/recipe/misc/MiscRecipeLoader.java | 7 ------- .../gtceu/data/recipe/misc/VanillaStandardRecipes.java | 7 ++++--- .../gtceu/data/recipe/misc/WoodMachineRecipes.java | 2 +- 3 files changed, 5 insertions(+), 11 deletions(-) diff --git a/src/main/java/com/gregtechceu/gtceu/data/recipe/misc/MiscRecipeLoader.java b/src/main/java/com/gregtechceu/gtceu/data/recipe/misc/MiscRecipeLoader.java index 65b82b870a..45c34e99eb 100644 --- a/src/main/java/com/gregtechceu/gtceu/data/recipe/misc/MiscRecipeLoader.java +++ b/src/main/java/com/gregtechceu/gtceu/data/recipe/misc/MiscRecipeLoader.java @@ -632,12 +632,5 @@ public static void init(Consumer provider) { .inputItems(ring, Steel, 2) .outputItems(STEEL_MINECART_WHEELS) .duration(60).EUt(20).save(provider); - - FLUID_SOLIDFICATION_RECIPES.recipeBuilder("light_concrete") - .inputFluids(Concrete.getFluid(144)) - .inputItems(SHAPE_MOLD_BLOCK) - .outputItems(GTBlocks.LIGHT_CONCRETE) - .duration(100).EUt(VA[ULV]) - .save(provider); } } diff --git a/src/main/java/com/gregtechceu/gtceu/data/recipe/misc/VanillaStandardRecipes.java b/src/main/java/com/gregtechceu/gtceu/data/recipe/misc/VanillaStandardRecipes.java index 810d6cf8ed..c2db6b89aa 100644 --- a/src/main/java/com/gregtechceu/gtceu/data/recipe/misc/VanillaStandardRecipes.java +++ b/src/main/java/com/gregtechceu/gtceu/data/recipe/misc/VanillaStandardRecipes.java @@ -489,10 +489,11 @@ private static void woodRecipes(Consumer provider) { VanillaRecipeHelper.addShapedRecipe(provider, "soul_torch", new ItemStack(Blocks.SOUL_TORCH, 1), "WB", 'W', ItemTags.SOUL_FIRE_BASE_BLOCKS, 'B', new ItemStack(Blocks.TORCH)); if (!ConfigHolder.INSTANCE.recipes.hardMiscRecipes) { - VanillaRecipeHelper.addShapedRecipe(provider, "soul_lantern", new ItemStack(Blocks.SOUL_LANTERN, 1), "WB", - 'W', ItemTags.SOUL_FIRE_BASE_BLOCKS, 'B', new ItemStack(Blocks.SOUL_LANTERN)); + VanillaRecipeHelper.addShapedRecipe(provider, "soul_lantern_from_lantern", + new ItemStack(Blocks.SOUL_LANTERN, 1), "WB", + 'W', ItemTags.SOUL_FIRE_BASE_BLOCKS, 'B', new ItemStack(Blocks.LANTERN)); - ASSEMBLER_RECIPES.recipeBuilder("soul_lantern") + ASSEMBLER_RECIPES.recipeBuilder("soul_lantern_from_lantern") .inputItems(new ItemStack(Blocks.LANTERN)) .inputItems(ItemTags.SOUL_FIRE_BASE_BLOCKS) .outputItems(new ItemStack(Blocks.SOUL_LANTERN)) diff --git a/src/main/java/com/gregtechceu/gtceu/data/recipe/misc/WoodMachineRecipes.java b/src/main/java/com/gregtechceu/gtceu/data/recipe/misc/WoodMachineRecipes.java index 7714cf9f0d..15f2911da4 100644 --- a/src/main/java/com/gregtechceu/gtceu/data/recipe/misc/WoodMachineRecipes.java +++ b/src/main/java/com/gregtechceu/gtceu/data/recipe/misc/WoodMachineRecipes.java @@ -834,7 +834,7 @@ public static void registerWoodTypeRecipe(Consumer provider, @No // plank -> button cutting CUTTER_RECIPES.recipeBuilder(name + "_button") - .inputItems(new ItemStack(entry.planks)) + .inputItems(new ItemStack(entry.pressurePlate)) .outputItems(entry.button, 12) .duration(250).EUt(VA[ULV]).save(provider); }