mirror of
https://github.com/minetest/minetest_game.git
synced 2024-11-10 01:33:52 +01:00
Fix missing argument for on_rotate
This commit is contained in:
parent
3669ca0a83
commit
eae3740d85
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user