Remove unused loop variables

This commit is contained in:
HybridDog
2021-03-07 19:19:00 +01:00
committed by Pierre-Adrien Langrognet
parent 182eb9822a
commit e5cdeef141
11 changed files with 17 additions and 17 deletions

View File

@ -188,7 +188,7 @@ end
function activate_network(owner, channel)
local network = wireless[owner][channel]
for i, wl_pos in pairs(network.members) do
for _, wl_pos in pairs(network.members) do
wireless_receptor_on(wl_pos, id, network)
end
end