#How to change the drop drop from a block, minecraft version 1.21 neoforge
4 messages · Page 1 of 1 (latest)
Once your ticket has been resolved, please close it with </ticket close:1054771505520717835> command!
Currently, the only way in KJS itself is to use a loot table. But you can use LootJS mod too
this json at kubejs/data/minecraft/loot_table/blocks/dirt.json should work:
{
"type": "minecraft:block",
"pools": [
{
"rolls": 1,
"entries": [
{
"type": "minecraft:item",
"name": "minecraft:gravel"
}
]
}
]
}