Allow wooden doors in maps (#551)

This commit is contained in:
ANAND 2020-01-03 11:35:37 +05:30 committed by GitHub
parent 22e2e03798
commit 05fba3f5ce
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -150,12 +150,13 @@ function _doors.door_toggle(pos, node, clicker)
replace_old_owner_information(pos)
local tname = ctf.player(clicker:get_player_name()).team
local owner_team = meta:get_string("owner_team")
local is_right_team = tname == owner_team
if clicker and not minetest.check_player_privs(clicker, "protection_bypass") and
not is_right_team then
return false
-- If team door, check clicker's team
if node.name:find("doors:door_steel") then
local tname = ctf.player(clicker:get_player_name()).team
local owner_team = meta:get_string("owner_team")
if clicker and tname ~= owner_team then
return false
end
end
-- until Lua-5.2 we have no bitwise operators :(