Use `mcl_util.call_on_rightclick` in `on_place` callback for barrier block

This commit is contained in:
AFCMS 2022-12-04 18:45:05 +01:00 committed by Gitea
parent b9238b4069
commit 79876635af
1 changed files with 3 additions and 5 deletions

View File

@ -199,11 +199,9 @@ minetest.register_node("mcl_core:barrier", {
end
-- Use pointed node's on_rightclick function first, if present
local node = minetest.get_node(pointed_thing.under)
if placer and not placer:get_player_control().sneak then
if minetest.registered_nodes[node.name] and minetest.registered_nodes[node.name].on_rightclick then
return minetest.registered_nodes[node.name].on_rightclick(pointed_thing.under, node, placer, itemstack) or itemstack
end
local new_stack = mcl_util.call_on_rightclick(itemstack, placer, pointed_thing)
if new_stack then
return new_stack
end
local name = placer:get_player_name()