place_node, dig_node and punch_node; an in-game tester tool; remove old code

This commit is contained in:
Perttu Ahola 2012-06-05 23:09:18 +03:00 committed by Nils Dagsson Moskopp
parent 28d4194f24
commit 3519373773
Signed by: erlehmann
GPG Key ID: A3BC671C35191080
1 changed files with 6 additions and 4 deletions

View File

@ -250,12 +250,14 @@ function minetest.node_dig(pos, node, digger)
wielded:add_wear(dp.wear)
digger:set_wielded_item(wielded)
-- Add dropped items
-- Add dropped items to object's inventory
if digger:get_inventory() then
local _, dropped_item
for _, dropped_item in ipairs(drops) do
digger:get_inventory():add_item("main", dropped_item)
end
end
end
local oldnode = nil
local oldmetadata = nil