mojira.dev
MC-91383

Horses (now only skeleton horses and zombie horses) drop different amount of loot than before

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
                            }
                        }
                    ]
                }
            ]
        }
    ]
}

Comments 2

Skeleton horse and zombie horse are affected in 15w44b. They were fixed in 15w44a in case of dropping end crystal, but they are not dropping them anymore.

Reopened, please clearly explain the problem as it exists in 15w44b inside the ticket's description.

Irbis

Agnes Larsson

Confirmed

Minecraft 15w43c, Minecraft 15w44a, Minecraft 15w44b, Minecraft 15w45a, Minecraft 15w46a, , Minecraft 16w02a, Minecraft 16w03a, Minecraft 16w06a, Minecraft 16w21a, Minecraft 16w32b

Minecraft 15w44b, Minecraft 16w38a

Retrieved