Skip to content

Commit

Permalink
changed wood wall recipe to use bronze instead of lead
Browse files Browse the repository at this point in the history
  • Loading branch information
Trinsdar committed Feb 7, 2025
1 parent 7d892f1 commit 2f9f9be
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public static void loadRecipes(Consumer<FinishedRecipe> output, AntimatterRecipe
AntimatterAPI.all(BlockColoredWall.class, b -> {
if (b.getMaterial() == Wood){
provider.addItemRecipe(output, "walls", b.asItem(),
of('P', PLATE.getMaterialTag(Lead), 'H', HAMMER.getTag(), 'S', SAW.getTag(), 'W', ItemTags.PLANKS), "W W", "SPH", "W W");
of('P', PLATE.getMaterialTag(Bronze), 'H', HAMMER.getTag(), 'S', SAW.getTag(), 'W', ItemTags.PLANKS), "W W", "SPH", "W W");
} else {
provider.addItemRecipe(output, "walls", b.asItem(),
of('P', PLATE.getMaterialTag(b.getMaterial()), 'H', HAMMER.getTag(), 'W', WRENCH.getTag()), "WPP", "HPP");
Expand Down

0 comments on commit 2f9f9be

Please sign in to comment.