Fix incorrect recipe id

This commit is contained in:
Sollace 2024-10-15 17:15:46 +01:00
parent 1bfb8e7203
commit c5f33d0abd
No known key found for this signature in database
GPG key ID: E52FACE7B5C773DB

View file

@ -368,7 +368,7 @@ public class URecipeProvider extends FabricRecipeProvider {
ShapedRecipeJsonBuilder.create(RecipeCategory.FOOD, Items.BREAD) ShapedRecipeJsonBuilder.create(RecipeCategory.FOOD, Items.BREAD)
.input('#', UItems.OATS).criterion("has_oats", conditionsFromItem(UItems.OATS)) .input('#', UItems.OATS).criterion("has_oats", conditionsFromItem(UItems.OATS))
.pattern("###") .pattern("###")
.offerTo(exporter, convertBetween(UItems.OATS, Items.WHEAT)); .offerTo(exporter, convertBetween(Items.BREAD, UItems.OATS));
ShapelessRecipeJsonBuilder.create(RecipeCategory.FOOD, UItems.JUICE) ShapelessRecipeJsonBuilder.create(RecipeCategory.FOOD, UItems.JUICE)
.input(Ingredient.fromTag(UTags.Items.FRESH_APPLES), 6).criterion(hasItem(Items.APPLE), conditionsFromTag(UTags.Items.FRESH_APPLES)) .input(Ingredient.fromTag(UTags.Items.FRESH_APPLES), 6).criterion(hasItem(Items.APPLE), conditionsFromTag(UTags.Items.FRESH_APPLES))
.input(Items.GLASS_BOTTLE) .input(Items.GLASS_BOTTLE)