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:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user