item texture upgrade, jei fixes, machine fixes, and datagen fixes/additions

This commit is contained in:
2026-05-15 07:08:46 -04:00
parent 68a4b56567
commit 3cb4714f7a
793 changed files with 438 additions and 98 deletions
@@ -54,16 +54,6 @@ public class NeoForgeRecipeProvider extends RecipeProvider implements ModRecipeP
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);