-
Bug
-
Resolution: Fixed
-
Minecraft 15w43c, Minecraft 15w44a, Minecraft 15w44b, Minecraft 15w45a, Minecraft 15w46a, Minecraft 15w47a, Minecraft 15w47b, Minecraft 15w47c, Minecraft 15w49a, Minecraft 15w51b, Minecraft 16w02a, Minecraft 16w03a, Minecraft 16w06a, Minecraft 16w21a, Minecraft 16w32b
-
None
-
Confirmed
Before, in 1.8.8 they dropped 0-2 bones/rotten flesh. With lootin III: 0-5 bones/rotten flesh.
In 15w44b they drop always 1 bone/rotten flesh even when killed with looting III.
Loot table is:
For skeleton horse:
{
"pools": [
{
"rolls": 1,
"entries": [
{
"type": "item",
"name": "minecraft:bone"
}
]
}
]
}
but should be:
{
"pools": [
{
"rolls": 1,
"entries": [
{
"type": "item",
"name": "minecraft:bone"
"weight": 1,
"functions": [
{
"function": "set_count",
"count": {
"min": 0,
"max": 2
}
},
{
"function": "looting_enchant",
"count": {
"min": 0,
"max": 1
}
}
]
}
]
}
]
}
For zombie horse:
{
"pools": [
{
"rolls": 1,
"entries": [
{
"type": "item",
"name": "minecraft:rotten_flesh"
}
]
}
]
}
but should be:
{
"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
}
}
]
}
]
}
]
}