Make more items respect the node's on_rightclick

- Bone meal
- Fishing rod
- Seeds
- Hopper
- Nether wart
- Sponge
- Bow
- Shovel
This commit is contained in:
Wuzzy 2017-03-02 16:09:13 +01:00
parent 064bf1effe
commit 9cb2f5b392
8 changed files with 72 additions and 3 deletions

View file

@ -72,6 +72,16 @@ end
local powerup_function = function(nextbow)
return function(itemstack, placer, pointed_thing)
-- Use pointed node's on_rightclick function first, if present
if pointed_thing.type == "node" then
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
end
end
if get_arrow(placer) ~= nil then
local wear = itemstack:get_wear()
itemstack:replace(nextbow)