Hi modders,
i was working on a small feature for a mod that i’m working on but one of the entities causes a unpleasant bug. After placing the model in the world, the game crashes. I’m really not sure where it can be the problem. Tried few things but every time the same result.
For the first entity version i also used just the dinner table model with the json files.
This it the entity json-file
I will add also a link to the git, maybe the error is somewhere else (also tried to find but no result) —> Github Link
{
"type": "entity",
"mixins": "file(tavern_small_table_wood_ghost.json)",
"components": {
"stonehearth:entity_forms": {
"iconic_form": "file(tavern_small_table_wood_iconic.json)",
"ghost_form": "file(tavern_small_table_wood_ghost.json)",
"placeable_on_ground": true
},
"destination": {
"region": [
{
"min": { "x": -0.5, "y": 0, "z": -0.5 },
"max": { "x": 1.5, "y": 1, "z": 1.5 }
}
],
"adjacency_flags": [
"back",
"front",
"left",
"right"
]
},
"region_collision_shape": {
"region": [
{
"min": { "x": -0.5, "y": 0, "z": -0.5 },
"max": { "x": 1.5, "y": 1, "z": 1.5 }
}
]
},
"stonehearth:storage": {
"type": "input_crate",
"capacity": 3,
"render_contents": true,
"filter_list": "bazaar:ui:tavern_small_table_wood:filters",
"is_single_filter": true
},
"effect_list": {
"default": "file(/data/rigs/entities/furniture/tavern_small_table_wood/effects/idle.json)"
}
},
"entity_data": {
"stonehearth:net_worth": {
"value_in_gold": 4,
"rarity": "common",
"shop_info": {
"buyable": true,
"sellable": true,
"shopkeeper_level": 1,
"shopkeeper_type": "caravan"
}
},
"stonehearth:appeal": {
"appeal": 12
},
"stonehearth:item_quality": {
"variable_quality": true
}
}
}