Skip to content

Commit

Permalink
Fix sign & chain recipe conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
Electrolyte220 committed Dec 3, 2024
1 parent 9d0c750 commit 21f383a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,7 @@ private static void hardIronRecipes(Consumer<FinishedRecipe> provider) {
ASSEMBLER_RECIPES.recipeBuilder("chain_iron")
.inputItems(ring, Iron, 3)
.outputItems(new ItemStack(Items.CHAIN, 2))
.circuitMeta(1)
.duration(40).EUt(10).save(provider);

VanillaRecipeHelper.addShapedRecipe(provider, "chain_wrought_iron", new ItemStack(Items.CHAIN, 2), " R ",
Expand All @@ -181,6 +182,7 @@ private static void hardIronRecipes(Consumer<FinishedRecipe> provider) {
ASSEMBLER_RECIPES.recipeBuilder("chain_wrought_iron")
.inputItems(ring, WroughtIron, 3)
.outputItems(new ItemStack(Items.CHAIN, 3))
.circuitMeta(1)
.duration(40).EUt(10).save(provider);

VanillaRecipeHelper.addShapedRecipe(provider, "chain_steel", new ItemStack(Items.CHAIN, 3), " R ",
Expand All @@ -190,6 +192,7 @@ private static void hardIronRecipes(Consumer<FinishedRecipe> provider) {
ASSEMBLER_RECIPES.recipeBuilder("chain_steel")
.inputItems(ring, Steel, 3)
.outputItems(new ItemStack(Items.CHAIN, 6))
.circuitMeta(1)
.duration(40).EUt(10).save(provider);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -564,7 +564,7 @@ public static void registerWoodTypeRecipe(Consumer<FinishedRecipe> provider, @No
.inputItems(new ItemStack(entry.planks), 6)
.inputItems(entry.getStick())
.outputItems(new ItemStack(entry.sign), 3)
.circuitMeta(3)
.circuitMeta(4)
.duration(100).EUt(4).save(provider);
}

Expand Down

0 comments on commit 21f383a

Please sign in to comment.