In Bedrock Edition, when a husk is riding a husk camel, the loot table is set up so that only one item—either rotten flesh or a rabbit foot—is dropped per kill. This occurs because the loot entries for these items are currently grouped under a single loot pool with a "rolls" value of 1, forcing the game to choose only one of the two items. In Java Edition, both items can drop simultaneously because they are defined in separate loot pools. This inconsistency between editions should be resolved by separating the loot tables for rotten flesh and rabbit foot in Bedrock Edition.
How to Reproduce:
Start a world in Minecraft Bedrock Edition.
Locate or spawn a husk riding a husk camel.
Kill the husk camel rider entity.
Observe the dropped loot items.
Observed Result:
Only one item—either rotten flesh (0–2 pieces) or a rabbit foot (0–1 pieces)—is dropped upon killing the husk camel rider. The two items never drop together.
Expected Result:
Both rotten flesh (0–2 pieces) and a rabbit foot (0–1 pieces) should have a chance to drop simultaneously from the husk camel rider, matching the behavior in Java Edition. This can be achieved by splitting the loot table into two separate pools, as shown in the example below:
Example corrected loot table structure:
{
"pools": [
{
"rolls": 1,
"entries": [
{
"type": "item",
"name": "minecraft:rotten_flesh",
"weight": 1,
"functions": [
{
"function": "set_count",
"count": {
"min": 0,
"max": 2
}
},
{
"function": "looting_enchant",
"count": {
"min": 0,
"max": 1
}
}
]
}
]
},
{
"rolls": 1,
"entries": [
{
"type": "item",
"name": "minecraft:rabbit_foot",
"weight": 1,
"functions": [
{
"function": "set_count",
"count": {
"min": 0,
"max": 1
}
},
{
"function": "looting_enchant",
"count": {
"min": 0,
"max": 1
}
}
]
}
]
},
{
"conditions": [
{
"condition": "killed_by_player_or_pets"
},
{
"condition": "random_chance_with_looting",
"chance": 0.025,
"looting_multiplier": 0.01
}
],
"rolls": 1,
"entries": [
{
"type": "item",
"name": "minecraft:iron_ingot",
"weight": 1
},
{
"type": "item",
"name": "minecraft:carrot",
"weight": 1
},
{
"type": "item",
"name": "minecraft:potato",
"weight": 1
}
]
},
{
"conditions": [
{
"condition": "killed_by_player_or_pets"
},
{
"condition": "passenger_of_entity",
"entity_type": "minecraft:chicken"
},
{
"condition": "is_baby"
}
],
"rolls": 1,
"entries": [
{
"type": "item",
"name": "minecraft:music_disc_lava_chicken"
}
]
}
]
}Linked issues
duplicates 1
Comments 0
No comments.