Fix missing argument for on_rotate

This commit is contained in:
Novatux 2015-05-14 16:07:19 +02:00
parent 3669ca0a83
commit eae3740d85
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ local function screwdriver_handler(itemstack, user, pointed_thing, mode)
-- Copy pos and node because callback can modify it -- Copy pos and node because callback can modify it
local result = ndef.on_rotate(vector.new(pos), local result = ndef.on_rotate(vector.new(pos),
{name = node.name, param1 = node.param1, param2 = node.param2}, {name = node.name, param1 = node.param1, param2 = node.param2},
user, mode) user, mode, new_param2)
if result == false then -- Disallow rotation if result == false then -- Disallow rotation
return return
elseif result == true then elseif result == true then