Make doors place when shift is held instead of calling on_rightclick

Fixes #1364
master
rubenwardy 2017-01-03 16:54:01 +00:00 committed by GitHub
parent 9ab50702fb
commit 48ab62db88
1 changed files with 2 additions and 1 deletions

View File

@ -265,7 +265,8 @@ function doors.register(name, def)
local node = minetest.get_node(pointed_thing.under)
local pdef = minetest.registered_nodes[node.name]
if pdef and pdef.on_rightclick then
if pdef and pdef.on_rightclick and
not placer:get_player_control().sneak then
return pdef.on_rightclick(pointed_thing.under,
node, placer, itemstack, pointed_thing)
end