Skip to content

Commit

Permalink
Fix incorrect recipe id
Browse files Browse the repository at this point in the history
  • Loading branch information
Sollace committed Oct 15, 2024
1 parent 1bfb8e7 commit c5f33d0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ private void offerFoodRecipes(RecipeExporter exporter) {
ShapedRecipeJsonBuilder.create(RecipeCategory.FOOD, Items.BREAD)
.input('#', UItems.OATS).criterion("has_oats", conditionsFromItem(UItems.OATS))
.pattern("###")
.offerTo(exporter, convertBetween(UItems.OATS, Items.WHEAT));
.offerTo(exporter, convertBetween(Items.BREAD, UItems.OATS));
ShapelessRecipeJsonBuilder.create(RecipeCategory.FOOD, UItems.JUICE)
.input(Ingredient.fromTag(UTags.Items.FRESH_APPLES), 6).criterion(hasItem(Items.APPLE), conditionsFromTag(UTags.Items.FRESH_APPLES))
.input(Items.GLASS_BOTTLE)
Expand Down

0 comments on commit c5f33d0

Please sign in to comment.