-
Bug
-
Resolution: Fixed
-
24w35a, 24w36a, 24w37a, 24w38a, 1.21.3
-
None
-
Confirmed
-
Textures and models
-
Low
-
1304781
-
Expansion B
The new item models for bee nest and hives use the block/orientable_with_bottom parent with assigned textures rather than just applying the block/bee_nest_{state} and block/beehive_{state} parents like every other block item
this means that if you remodel the nest/hive blocks, the item model will require to be remodeled seperately
the item models affected:
item/beehive_empty.json
item/beehive_honey.json
item/bee_nest_empty.json
item/bee_nest_honey.json
issue presented using item/beehive_empty.json as an example:
[beehive_empty.json] current beehive item model -incorrect:
{
"parent": "minecraft:block/orientable_with_bottom",
"textures": {
"bottom": "minecraft:block/beehive_end",
"front": "minecraft:block/beehive_front",
"particle": "minecraft:block/beehive_side",
"side": "minecraft:block/beehive_side",
"top": "minecraft:block/beehive_end"
}
}
[beehive_empty.json] fixed hive item model:
{
"parent": "minecraft:block/beehive_empty"
}