mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-23 21:38:00 +01:00
Fix incorrect recipe id
This commit is contained in:
parent
1bfb8e7203
commit
c5f33d0abd
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||||
|
|
Loading…
Reference in a new issue