Skip to content

Commit

Permalink
Last minute fixes (#2165)
Browse files Browse the repository at this point in the history
  • Loading branch information
JuiceyBeans authored Oct 13, 2024
1 parent 05416db commit 5b33d3e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -632,12 +632,5 @@ public static void init(Consumer<FinishedRecipe> 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);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -489,10 +489,11 @@ private static void woodRecipes(Consumer<FinishedRecipe> 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))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -834,7 +834,7 @@ public static void registerWoodTypeRecipe(Consumer<FinishedRecipe> 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);
}
Expand Down

0 comments on commit 5b33d3e

Please sign in to comment.