Skip to content
Snippets Groups Projects
Commit ea3fcdd0 authored by Zefram's avatar Zefram Committed by sfan5
Browse files

Pair door with door of any type

Mirror the setup of a door placed next to any door, not just next to
a door of the same type.  This is particularly useful where there are
multiple door types that have the same appearance, but one wants the
doors of a pair to have different behaviour in some other respect.
parent 820e48ba
No related branches found
No related tags found
No related merge requests found
...@@ -90,7 +90,7 @@ function doors.register_door(name, def) ...@@ -90,7 +90,7 @@ function doors.register_door(name, def)
elseif p2 == 3 then elseif p2 == 3 then
pt3.z = pt3.z-1 pt3.z = pt3.z-1
end end
if not string.find(minetest.get_node(pt3).name, name.."_b_") then if minetest.get_item_group(minetest.get_node(pt3).name, "door") == 0 then
minetest.set_node(pt, {name=name.."_b_1", param2=p2}) minetest.set_node(pt, {name=name.."_b_1", param2=p2})
minetest.set_node(pt2, {name=name.."_t_1", param2=p2}) minetest.set_node(pt2, {name=name.."_t_1", param2=p2})
else else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment