Skip to content

Commit

Permalink
Add pressing recipes for coarse and rooted dirt (#7186)
Browse files Browse the repository at this point in the history
  • Loading branch information
GG3Hahn authored Jan 13, 2025
1 parent 6708596 commit 7a7993d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@
},
{
"item": "minecraft:dirt"
},
{
"item": "minecraft:coarse_dirt"
},
{
"item": "minecraft:rooted_dirt"
}
]
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public class PressingRecipeGen extends ProcessingRecipeGen {

SUGAR_CANE = create(() -> Items.SUGAR_CANE, b -> b.output(Items.PAPER)),

PATH = create("path", b -> b.require(Ingredient.of(Items.GRASS_BLOCK, Items.DIRT))
PATH = create("path", b -> b.require(Ingredient.of(Items.GRASS_BLOCK, Items.DIRT, Items.COARSE_DIRT, Items.ROOTED_DIRT))
.output(Items.DIRT_PATH)),

IRON = create("iron_ingot", b -> b.require(I.iron())
Expand Down

0 comments on commit 7a7993d

Please sign in to comment.