mirror of
https://github.com/minetest-mods/technic.git
synced 2024-11-15 23:10:41 +01:00
Fix item drop when digging mv furnace
Fixed crash when digging mv furnace
This commit is contained in:
parent
3db3a9cc32
commit
fbcb8b15b6
|
@ -157,13 +157,13 @@ function technic.machine_after_dig_node(pos, oldnode, oldmetadata, player)
|
||||||
if oldmetadata.inventory.upgrade1 and oldmetadata.inventory.upgrade1[1] then
|
if oldmetadata.inventory.upgrade1 and oldmetadata.inventory.upgrade1[1] then
|
||||||
local stack = ItemStack(oldmetadata.inventory.upgrade1[1])
|
local stack = ItemStack(oldmetadata.inventory.upgrade1[1])
|
||||||
if not stack:is_empty() then
|
if not stack:is_empty() then
|
||||||
minetest.item_drop(stack, "", pos)
|
minetest.add_item(pos, stack)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
if oldmetadata.inventory.upgrade2 and oldmetadata.inventory.upgrade2[1] then
|
if oldmetadata.inventory.upgrade2 and oldmetadata.inventory.upgrade2[1] then
|
||||||
local stack = ItemStack(oldmetadata.inventory.upgrade2[1])
|
local stack = ItemStack(oldmetadata.inventory.upgrade2[1])
|
||||||
if not stack:is_empty() then
|
if not stack:is_empty() then
|
||||||
minetest.item_drop(stack, "", pos)
|
minetest.add_item(pos, stack)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue
Block a user