mirror of
https://github.com/luanti-org/minetest_game.git
synced 2025-03-15 12:21:24 +00:00
Doors: Pass pointed_thing to on_rightclick() callback
This is an omission technicality. The callee should be able to trust this isn't `nil`
This commit is contained in:
parent
541b2d79c7
commit
ba33639887
1 changed files with 1 additions and 1 deletions
|
@ -254,7 +254,7 @@ function doors.register(name, def)
|
|||
local pdef = minetest.registered_nodes[node.name]
|
||||
if pdef and pdef.on_rightclick then
|
||||
return pdef.on_rightclick(pointed_thing.under,
|
||||
node, placer, itemstack)
|
||||
node, placer, itemstack, pointed_thing)
|
||||
end
|
||||
|
||||
if pdef and pdef.buildable_to then
|
||||
|
|
Loading…
Add table
Reference in a new issue