mirror of
https://github.com/luanti-org/luanti.git
synced 2025-07-02 16:38:41 +00:00
Dont call on_rightclick() if sneak is pressed
This commit is contained in:
parent
c1fee78e85
commit
28f5b55643
1 changed files with 2 additions and 1 deletions
|
@ -232,7 +232,8 @@ end
|
|||
|
||||
function minetest.item_place(itemstack, placer, pointed_thing)
|
||||
-- Call on_rightclick if the pointed node defines it
|
||||
if pointed_thing.type == "node" then
|
||||
if pointed_thing.type == "node" and placer and
|
||||
not placer:get_player_control().sneak then
|
||||
local n = minetest.env:get_node(pointed_thing.under)
|
||||
local nn = n.name
|
||||
if minetest.registered_nodes[nn] and minetest.registered_nodes[nn].on_rightclick then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue