Fix Forge 1.20.1 datagen with extra shapeless method removal

Fix generator gui flame texture by actually adding the texture and referencing it on the screen
Fix generator placement, as its placement is 180 degrees to whats expected
Changed save method for all machines in 1.20.1 to fix item placement
This commit is contained in:
2026-05-20 18:04:08 -04:00
parent 3cb4714f7a
commit d2c5ca9e21
12 changed files with 258 additions and 28 deletions
@@ -55,16 +55,6 @@ public class ForgeRecipeProvider extends RecipeProvider implements ModRecipeProv
builder.save(output);
}
@Override
public void buildShapeless(RecipeCategory category, ItemLike result, int count, ItemLike... ingredients) {
ShapelessRecipeBuilder builder = ShapelessRecipeBuilder.shapeless(category, result, count);
for (ItemLike ingredient : ingredients) {
builder.requires(ingredient);
}
builder.unlockedBy("has_item", has(result));
builder.save(output);
}
@Override
public void buildShapeless(RecipeCategory category, ItemLike result, int count, String name, ItemLike... ingredients) {
ShapelessRecipeBuilder builder = ShapelessRecipeBuilder.shapeless(category, result, count);