Skip to content

Commit

Permalink
Misc recipe fixes (#2056)
Browse files Browse the repository at this point in the history
  • Loading branch information
JuiceyBeans authored Sep 29, 2024
1 parent 07567b5 commit 0081b18
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 20 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -145,11 +145,6 @@ private static void hardWoodRecipes(Consumer<FinishedRecipe> provider) {
"PsP", "PSP",
'P', ItemTags.PLANKS,
'S', ItemTags.WOODEN_SLABS);

ASSEMBLER_RECIPES.recipeBuilder("barrel")
.inputItems(ItemTags.PLANKS, 7)
.outputItems(new ItemStack(Blocks.BARREL))
.duration(100).EUt(4).save(provider);
}

private static void hardIronRecipes(Consumer<FinishedRecipe> provider) {
Expand Down Expand Up @@ -1181,7 +1176,7 @@ private static void hardMiscRecipes(Consumer<FinishedRecipe> provider) {

ASSEMBLER_RECIPES.recipeBuilder("composter")
.inputItems(ItemTags.PLANKS, 4)
.circuitMeta(1)
.circuitMeta(23)
.outputItems(new ItemStack(Blocks.COMPOSTER))
.duration(80).EUt(6).save(provider);

Expand Down Expand Up @@ -1533,7 +1528,7 @@ private static void removeVanillaBlockRecipes(Consumer<FinishedRecipe> 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));
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -578,16 +578,12 @@ private static void woodRecipes(Consumer<FinishedRecipe> provider) {
ASSEMBLER_RECIPES.recipeBuilder("ladder").EUt(4).duration(40).circuitMeta(7)
.inputItems(new ItemStack(Items.STICK, 7)).outputItems(new ItemStack(Blocks.LADDER, 2)).save(provider);

ASSEMBLER_RECIPES.recipeBuilder("chest_minecart").EUt(4).duration(100).inputItems(new ItemStack(Items.MINECART))
.inputItems(Tags.Items.CHESTS_WOODEN).outputItems(new ItemStack(Items.CHEST_MINECART)).save(provider);
ASSEMBLER_RECIPES.recipeBuilder("furnace_minecart").EUt(4).duration(100)
.inputItems(new ItemStack(Items.MINECART)).inputItems(new ItemStack(Blocks.FURNACE))
.outputItems(new ItemStack(Items.FURNACE_MINECART)).save(provider);
ASSEMBLER_RECIPES.recipeBuilder("tnt_minecart").EUt(4).duration(100).inputItems(new ItemStack(Items.MINECART))
.inputItems(new ItemStack(Blocks.TNT)).outputItems(new ItemStack(Items.TNT_MINECART)).save(provider);
ASSEMBLER_RECIPES.recipeBuilder("hopper_minecart").EUt(4).duration(100)
.inputItems(new ItemStack(Items.MINECART)).inputItems(new ItemStack(Blocks.HOPPER))
.outputItems(new ItemStack(Items.HOPPER_MINECART)).save(provider);
ASSEMBLER_RECIPES.recipeBuilder("barrel")
.inputItems(ItemTags.PLANKS, 7)
.outputItems(new ItemStack(Blocks.BARREL))
.circuitMeta(24)
.duration(100).EUt(4)
.save(provider);
}

/**
Expand Down Expand Up @@ -1228,12 +1224,21 @@ private static void miscRecipes(Consumer<FinishedRecipe> provider) {
.outputItems(new ItemStack(Blocks.CANDLE, 2))
.duration(20).EUt(1).save(provider);

// I realise this recipe may genuinely NEVER be used by someone, so feel free to remove them.
// At the same time, they don't really change anything by being there? Idk
FORGE_HAMMER_RECIPES.recipeBuilder("disc_fragment_5")
.inputItems(new ItemStack(Items.MUSIC_DISC_5))
.outputItems(new ItemStack(Items.DISC_FRAGMENT_5, 9))
.duration(100).EUt(6).save(provider);

ASSEMBLER_RECIPES.recipeBuilder("chest_minecart").EUt(4).duration(100).inputItems(new ItemStack(Items.MINECART))
.inputItems(Tags.Items.CHESTS_WOODEN).outputItems(new ItemStack(Items.CHEST_MINECART)).save(provider);
ASSEMBLER_RECIPES.recipeBuilder("furnace_minecart").EUt(4).duration(100)
.inputItems(new ItemStack(Items.MINECART)).inputItems(new ItemStack(Blocks.FURNACE))
.outputItems(new ItemStack(Items.FURNACE_MINECART)).save(provider);
ASSEMBLER_RECIPES.recipeBuilder("tnt_minecart").EUt(4).duration(100).inputItems(new ItemStack(Items.MINECART))
.inputItems(new ItemStack(Blocks.TNT)).outputItems(new ItemStack(Items.TNT_MINECART)).save(provider);
ASSEMBLER_RECIPES.recipeBuilder("hopper_minecart").EUt(4).duration(100)
.inputItems(new ItemStack(Items.MINECART)).inputItems(new ItemStack(Blocks.HOPPER))
.outputItems(new ItemStack(Items.HOPPER_MINECART)).save(provider);
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -643,7 +643,7 @@ public static void registerWoodTypeRecipe(Consumer<FinishedRecipe> provider, @No
ASSEMBLER_RECIPES.recipeBuilder(name + "_fence")
.inputItems(entry.planks)
.outputItems(entry.fence)
.circuitMeta(1)
.circuitMeta(13)
.duration(100).EUt(4)
.save(provider);
}
Expand Down

0 comments on commit 0081b18

Please sign in to comment.