Skip to content

Commit

Permalink
Change iron rounds -> iron rings for a few recipes (#2026)
Browse files Browse the repository at this point in the history
  • Loading branch information
JuiceyBeans authored Sep 29, 2024
1 parent 41283f3 commit c6432e7
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1042,22 +1042,22 @@ private static void hardMiscRecipes(Consumer<FinishedRecipe> provider) {
VanillaRecipeHelper.addShapedRecipe(provider, "lantern", new ItemStack(Blocks.LANTERN), "hRf",
"RFR", " R ",
'F', new ItemStack(Blocks.TORCH),
'R', new UnificationEntry(TagPrefix.round, GTMaterials.Iron));
'R', new UnificationEntry(ring, Iron));

ASSEMBLER_RECIPES.recipeBuilder("lantern")
.inputItems(new ItemStack(Blocks.TORCH))
.inputItems(round, Iron, 4)
.inputItems(ring, Iron, 4)
.outputItems(new ItemStack(Blocks.LANTERN))
.duration(100).EUt(1).save(provider);

VanillaRecipeHelper.addShapedRecipe(provider, "soul_lantern", new ItemStack(Blocks.SOUL_LANTERN), "hRf",
"RFR", " R ",
'F', new ItemStack(Blocks.SOUL_TORCH),
'R', new UnificationEntry(TagPrefix.round, GTMaterials.Iron));
'R', new UnificationEntry(ring, Iron));

ASSEMBLER_RECIPES.recipeBuilder("soul_lantern")
.inputItems(new ItemStack(Blocks.SOUL_TORCH))
.inputItems(round, Iron, 4)
.inputItems(ring, Iron, 4)
.outputItems(new ItemStack(Blocks.SOUL_LANTERN))
.duration(100).EUt(1).save(provider);

Expand Down Expand Up @@ -1331,10 +1331,10 @@ private static void hardMiscRecipes(Consumer<FinishedRecipe> provider) {

VanillaRecipeHelper.addShapedRecipe(provider, "chain", new ItemStack(Items.CHAIN), " R ",
"wR ", " R ",
'R', new UnificationEntry(round, Iron));
'R', new UnificationEntry(ring, Iron));

ASSEMBLER_RECIPES.recipeBuilder("chain")
.inputItems(round, Iron, 3)
.inputItems(ring, Iron, 3)
.outputItems(new ItemStack(Items.CHAIN))
.duration(40).EUt(10).save(provider);

Expand Down

0 comments on commit c6432e7

Please sign in to comment.