Fix broken door protection.

A previous fix overwrote the `def` variable during registration,
causing protected doors no longer to be placed with protection.
master
Auke Kok 2016-02-20 00:41:22 -08:00 committed by paramat
parent 4c9944b263
commit 6b055ae18a
1 changed files with 6 additions and 6 deletions

View File

@ -209,19 +209,19 @@ function doors.register(name, def)
end
local node = minetest.get_node(pointed_thing.under)
local def = minetest.registered_nodes[node.name]
if def and def.on_rightclick then
return def.on_rightclick(pointed_thing.under,
local pdef = minetest.registered_nodes[node.name]
if pdef and pdef.on_rightclick then
return pdef.on_rightclick(pointed_thing.under,
node, placer, itemstack)
end
if def and def.buildable_to then
if pdef and pdef.buildable_to then
pos = pointed_thing.under
else
pos = pointed_thing.above
node = minetest.get_node(pos)
def = minetest.registered_nodes[node.name]
if not def or not def.buildable_to then
pdef = minetest.registered_nodes[node.name]
if not pdef or not pdef.buildable_to then
return itemstack
end
end