forked from thunderdog1138/star_wars
Fix broken door protection.
A previous fix overwrote the `def` variable during registration, causing protected doors no longer to be placed with protection.
This commit is contained in:
parent
4c9944b263
commit
6b055ae18a
|
@ -209,19 +209,19 @@ function doors.register(name, def)
|
||||||
end
|
end
|
||||||
|
|
||||||
local node = minetest.get_node(pointed_thing.under)
|
local node = minetest.get_node(pointed_thing.under)
|
||||||
local def = minetest.registered_nodes[node.name]
|
local pdef = minetest.registered_nodes[node.name]
|
||||||
if def and def.on_rightclick then
|
if pdef and pdef.on_rightclick then
|
||||||
return def.on_rightclick(pointed_thing.under,
|
return pdef.on_rightclick(pointed_thing.under,
|
||||||
node, placer, itemstack)
|
node, placer, itemstack)
|
||||||
end
|
end
|
||||||
|
|
||||||
if def and def.buildable_to then
|
if pdef and pdef.buildable_to then
|
||||||
pos = pointed_thing.under
|
pos = pointed_thing.under
|
||||||
else
|
else
|
||||||
pos = pointed_thing.above
|
pos = pointed_thing.above
|
||||||
node = minetest.get_node(pos)
|
node = minetest.get_node(pos)
|
||||||
def = minetest.registered_nodes[node.name]
|
pdef = minetest.registered_nodes[node.name]
|
||||||
if not def or not def.buildable_to then
|
if not pdef or not pdef.buildable_to then
|
||||||
return itemstack
|
return itemstack
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue