the composter has all the items that can be composted hard coded into the block. This is bad for 3 reasons.
1. Its more difficult to add more stuff to the composter because you have to go into the block and modify it to add the block / item you want to make compostable
2. It will only output 1 thing... BONEMEAL! a great breakfast
3. You cant add custom recipes to it with Datapacks & Mods with a custom texture for the junk / compost texture inside of it and no custom output :(
So I suggest you make it like the crafting table that can take in custom crafting recipes done with JSON files.
something like this:
{
"type": "minecraft:composting",
"ingrediants":
{
"tag": "minecraft:compostable"
}
"chance": 0.5,
"result":
{
"item": "minecraft:bonemeal",
"count": 1
}
}
Please sign in to leave a comment.
0 Comments