execute_downward_dig_cycle: Add missing parameter (#45)

This commit is contained in:
tuedel 2019-03-17 10:32:35 +01:00 committed by SmallJoker
parent e09f1b9f56
commit d41190a842

@ -532,7 +532,7 @@ digtron.execute_downward_dig_cycle = function(pos, clicker)
local target = minetest.get_node(location.pos)
local targetdef = minetest.registered_nodes[target.name]
if targetdef.damage_creatures ~= nil then
targetdef.damage_creatures(clicker, location.pos, controlling_coordinate)
targetdef.damage_creatures(clicker, location.pos, controlling_coordinate, items_dropped)
end
end
end