Doors: Ignore permission check if player parameter is omitted

As written in game_api.txt.
This commit is contained in:
upsilon 2017-04-17 12:56:27 +02:00 committed by paramat
parent c54a7e882f
commit 6335525757
1 changed files with 2 additions and 2 deletions

View File

@ -150,7 +150,7 @@ function _doors.door_toggle(pos, node, clicker)
replace_old_owner_information(pos)
if not default.can_interact_with_node(clicker, pos) then
if clicker and not default.can_interact_with_node(clicker, pos) then
return false
end
@ -530,7 +530,7 @@ function _doors.trapdoor_toggle(pos, node, clicker)
replace_old_owner_information(pos)
if not default.can_interact_with_node(clicker, pos) then
if clicker and not default.can_interact_with_node(clicker, pos) then
return false
end