Coral 'on place': Pass node to 'on rightclick', not node name

This commit is contained in:
OgelGames 2019-11-28 13:01:19 +11:00 committed by Paramat
parent 00a8bd521a
commit 0f764bf447
1 changed files with 1 additions and 1 deletions

View File

@ -2031,7 +2031,7 @@ local function coral_on_place(itemstack, placer, pointed_thing)
local def_under = minetest.registered_nodes[node_under.name]
if def_under and def_under.on_rightclick and not placer:get_player_control().sneak then
return def_under.on_rightclick(pos_under, node_under.name,
return def_under.on_rightclick(pos_under, node_under,
placer, itemstack, pointed_thing) or itemstack
end