Fix Rebar Recipe

- Changed the recipe from 1 Steel -> 4 Rebar to 1 Steel -> 2 Rebar.
This fixes compatibility issues with most mods by making rebar follow the rod conventions.
This commit is contained in:
PouffyDev
2025-06-27 21:47:21 +01:00
parent c7f3c16fb8
commit 662b484a46
3 changed files with 4 additions and 4 deletions

View File

@@ -95,7 +95,7 @@ public class TFMGItems {
public static final ItemEntry<Item>
REBAR = REGISTRATE.item("rebar", Item::new)
.tag(AllTags.forgeItemTag("rods/steel"))
.recipe((c, p) -> p.stonecutting(DataIngredient.tag(AllTags.forgeItemTag("ingots/steel")), RecipeCategory.BUILDING_BLOCKS, c::get, 4))
.recipe((c, p) -> p.stonecutting(DataIngredient.tag(AllTags.forgeItemTag("ingots/steel")), RecipeCategory.BUILDING_BLOCKS, c::get, 2))
.register(),
SYNTHETIC_STRING = REGISTRATE.item("synthetic_string", Item::new)
.tag(Tags.Items.STRING, AllTags.forgeItemTag("string"))