diff --git a/mods/ITEMS/minetest-3d_armor/3d_armor_stand/init.lua b/mods/ITEMS/minetest-3d_armor/3d_armor_stand/init.lua index 689921389..65407ff4a 100644 --- a/mods/ITEMS/minetest-3d_armor/3d_armor_stand/init.lua +++ b/mods/ITEMS/minetest-3d_armor/3d_armor_stand/init.lua @@ -132,7 +132,8 @@ minetest.register_node("3d_armor_stand:armor_stand", { if not inv then return end if list then -- ... but only if the slot is free - local single_item = itemstack:get_name() + local single_item = ItemStack(itemstack) + single_item:set_count(1) if inv:is_empty(list) then inv:add_item(list, single_item) update_entity(pos)