Hey everyone, I'm attempting to update Foxys old mob head pack to include the new pig, chicken & cow biome variants. But I'm not able to get the different heads to drop, just the old "temperate" head types no matter which variant I kill. Any help would be greatly appreciated
{
"format_version": "1.21.90",
"minecraft:entity": {
"description": {
"identifier": "minecraft:chicken",
"spawn_category": "creature",
"is_spawnable": true,
"is_summonable": true,
"properties": {
"minecraft:climate_variant": {
"type": "enum",
"values": [ "temperate", "warm", "cold" ],
"default": "temperate",
"client_sync": true
}
}
},
"component_groups": {
"temperate": {
"minecraft:variant": {
"value": 0
},
"minecraft:loot": {
"table": "loot_tables/entities/chicken.json"
}
},
"cold": {
"minecraft:variant": {
"value": 1
},
"minecraft:loot": {
"table": "loot_tables/entities/chicken_cold.json"
}
},
"warm": {
"minecraft:variant": {
"value": 2
},
"minecraft:loot": {
"table": "loot_tables/entities/chicken_warm.json"
}
}