Fix door controller issue

This commit is contained in:
Joachim Stolberg 2022-06-25 10:28:32 +02:00
parent 137e61b6ce
commit df6a526a99

View File

@ -200,7 +200,7 @@ local function show_nodes(pos)
gain = 1, gain = 1,
max_hear_distance = 15}) max_hear_distance = 15})
end end
return exchange_nodes(pos, nvm, nil, "set") return exchange_nodes(pos, nvm)
end end
end end
@ -214,7 +214,7 @@ local function hide_nodes(pos)
gain = 1, gain = 1,
max_hear_distance = 15}) max_hear_distance = 15})
end end
return exchange_nodes(pos, nvm, nil, "dig") return exchange_nodes(pos, nvm)
end end
end end