Always create chest entities

This commit is contained in:
Elias Fleckenstein 2021-01-04 17:16:48 +01:00
parent 17ff0c9be5
commit 378dca593e
1 changed files with 1 additions and 1 deletions

View File

@ -1270,7 +1270,7 @@ local function select_and_spawn_entity(pos, node)
local node_name = node.name
local node_def = minetest.registered_nodes[node_name]
local double_chest = minetest.get_item_group(node_name, "double_chest") > 0
find_or_create_entity(pos, node_name, node_def._chest_entity_textures, node.param2, double_chest, node_def._chest_entity_sound, node_def._chest_entity_mesh)
create_entity(pos, node_name, node_def._chest_entity_textures, node.param2, double_chest, node_def._chest_entity_sound, node_def._chest_entity_mesh)
end
minetest.register_lbm({