Item Recycler

Item Recycler

1M Downloads

Example recipes doesn't work

BearInBag opened this issue ยท 1 comments

commented

Example recipe from curseforge pages doesn't work
Recycle consume dirt, but doesn't produce seeds
2022-05-18_19 08 40

{ "type": "recycler:recycler",
"ingredient": { "item": "minecraft:dirt" },
"results": [ { "item": "minecraft:wheat_seeds", "count": 3 },
{ "item": "minecraft:stone" } ],
"time": 60 }

commented

Hey, I know what went wrong. Just remove's' from "results"
Just like this:
{
"type": "recycler:recycler",
"ingredient": { "item": "minecraft:dirt" },
"result": [
{ "item": "minecraft:diamond", "count": 3 },
{ "item": "minecraft:stone" }
],
"time": 20
}

Just for example,don't care~