Add pressing recipes for coarse and rooted dirt (#7186)

This commit is contained in:
GG3Hahn 2025-01-13 16:01:33 +01:00 committed by GitHub
parent 67085963d0
commit 7a7993deb8
Failed to generate hash of commit
2 changed files with 7 additions and 1 deletions

View file

@ -7,6 +7,12 @@
},
{
"item": "minecraft:dirt"
},
{
"item": "minecraft:coarse_dirt"
},
{
"item": "minecraft:rooted_dirt"
}
]
],

View file

@ -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())