mirror of
https://github.com/Creators-of-Create/Create.git
synced 2024-12-16 13:03:44 +01:00
Remove Podzol from the grass pressing recipe and add a compatibility recipe for Environmental's Podzol Path
This commit is contained in:
parent
187c448513
commit
17676822cf
2 changed files with 22 additions and 1 deletions
|
@ -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.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)),
|
||||
|
||||
IRON = create("iron_ingot", b -> b.require(I.iron())
|
||||
|
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"conditions": [
|
||||
{
|
||||
"type": "forge:mod_loaded",
|
||||
"modid": "environmental"
|
||||
}
|
||||
],
|
||||
"type": "create:pressing",
|
||||
"ingredients": [
|
||||
[
|
||||
{
|
||||
"item": "minecraft:podzol"
|
||||
}
|
||||
]
|
||||
],
|
||||
"results": [
|
||||
{
|
||||
"item": "environmental:podzol_path"
|
||||
}
|
||||
]
|
||||
}
|
Loading…
Reference in a new issue