Remove Podzol from the grass pressing recipe and add a compatibility recipe for Environmental's Podzol Path

This commit is contained in:
Mario 2021-05-07 18:18:32 +10:00
parent 187c448513
commit 17676822cf
2 changed files with 22 additions and 1 deletions

View file

@ -14,7 +14,7 @@ public class PressingRecipeGen extends ProcessingRecipeGen {
SUGAR_CANE = create(() -> Items.SUGAR_CANE, b -> b.output(Items.PAPER)), SUGAR_CANE = create(() -> Items.SUGAR_CANE, b -> b.output(Items.PAPER)),
PATH = create("path", b -> b.require(Ingredient.fromItems(Items.GRASS_BLOCK, Items.DIRT, Items.PODZOL)) PATH = create("path", b -> b.require(Ingredient.fromItems(Items.GRASS_BLOCK, Items.DIRT))
.output(Items.GRASS_PATH)), .output(Items.GRASS_PATH)),
IRON = create("iron_ingot", b -> b.require(I.iron()) IRON = create("iron_ingot", b -> b.require(I.iron())

View file

@ -0,0 +1,21 @@
{
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "environmental"
}
],
"type": "create:pressing",
"ingredients": [
[
{
"item": "minecraft:podzol"
}
]
],
"results": [
{
"item": "environmental:podzol_path"
}
]
}