1
0
mirror of https://github.com/minetest/minetest_game.git synced 2025-01-03 12:00:20 +01:00

Fix missing argument for on_rotate

This commit is contained in:
Novatux 2015-05-14 16:07:19 +02:00
parent 3669ca0a83
commit eae3740d85

View File

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