rename to explicit variables

This commit is contained in:
Tai @ Flex 2016-11-26 13:27:15 +00:00
parent 70ed7e34a0
commit 4eda120fc1
1 changed files with 5 additions and 5 deletions

View File

@ -6,16 +6,16 @@ areas.register_hud_handler = function(handler)
end
-- Generalized call to registered handlers to add their proeciton labels to the areas list
local detect_extra_protection = function(pos,res)
local detect_extra_protection = function(pos,area_list)
if #protection_detectors <= 0 then
return res
return area_list
end
for idx=1,#protection_detectors do
local func = protection_detectors[idx]
res = func(pos,res)
area_list = func(pos,area_list)
end
return res
return area_list
end
--- Returns a list of areas that include the provided position.