You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I replaced your items with 3 vanilla items to test and it works.
What is your game version? Loot tables change a lot through the supported versions. I am no expert on loot tables myself; I generated the ones in the mod using datagen.
If you are on the latest version, your file structure should be like this:
This discussion was converted from issue #27 on May 25, 2026 09:03.
Heading
Bold
Italic
Quote
Code
Link
Numbered list
Unordered list
Task list
Attach files
Mention
Reference
Menu
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
I'm not very good at editing loot_tables, here's my file.
{
"type": "compost:composter",
"pools": [
{
"rolls": 1.0,
"bonus_rolls": 0.0,
"entries": [
{
"type": "minecraft:item",
"name": "minecraft:bone_meal"
}
]
},
{
"rolls": 1.0,
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:random_chance",
"chance": 0.25
}
],
"entries": [
{
"type": "minecraft:item",
"name": "farmers_delight:organic_compost"
}
]
},
{
"rolls": 1.0,
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:random_chance",
"chance": 0.30
}
],
"entries": [
{
"type": "minecraft:item",
"name": "overweight_farming:vegetable_peels",
"functions": [
{
"function": "minecraft:set_count",
"count": {
"type": "minecraft:uniform",
"min": 1.0,
"max": 6.0
}
}
]
}
]
}
],
"random_sequence": "compost:composters/compost"
}
What should the file look like in order to work correctly? Right now, the items just don't drop out.
All reactions