mojira.dev
MC-147243

Incorrect loot table for Armor Stands

the current look table for Armor Stand entities looks like this;

{
 "type": "minecraft:entity"
}
{
 "type": "minecraft:entity"
}

When it should likely look like this:

{
 "type": "minecraft:entity",
  "pools": [
   {
   "rolls": 1.0,
   "entries": [
    {
     "type": "minecraft:item",
     "name": "minecraft:armor_stand"
    }
   ],
   "conditions": [
    {
    "condition": "minecraft:damage_source_properties",
    "properties": {
     "type": {
      "bypasses_invulnerability": false
     }
    }
   }
  ]
 }
 ]
}
{
 "type": "minecraft:entity",
  "pools": [
   {
   "rolls": 1.0,
   "entries": [
    {
     "type": "minecraft:item",
     "name": "minecraft:armor_stand"
    }
   ],
   "conditions": [
    {
    "condition": "minecraft:damage_source_properties",
    "properties": {
     "type": {
      "bypasses_invulnerability": false
     }
    }
   }
  ]
 }
 ]
}

Currently armor stand entities dropping armor stand items is built-in, even though it likely shouldn't be.

 

Comments 1

Armor stand drop rules are much more complicated than that and were never "normal" (for example, they use doTileDrops gamerule instead of doMobLoot). Closing this as feature request.

MukiTanuki

(Unassigned)

Confirmed

Loot tables

armor_stand, entity, item, loot_table

Minecraft 19w13b, Minecraft 19w14a, Minecraft 19w14b, Minecraft 1.14 Pre-Release 1, Minecraft 1.14 Pre-Release 2, ..., Minecraft 1.14, Minecraft 1.14.1 Pre-Release 1, Minecraft 1.14.1 Pre-Release 2, Minecraft 1.14.1, Minecraft 1.14.2 Pre-Release 1

Retrieved