mirror of
https://github.com/minetest-mods/areas.git
synced 2024-12-28 03:30:39 +01:00
rename to explicit variables
This commit is contained in:
parent
70ed7e34a0
commit
4eda120fc1
10
api.lua
10
api.lua
@ -2,20 +2,20 @@ local protection_detectors = {}
|
|||||||
|
|
||||||
-- Other protection mods should be able to display their protection in the hud
|
-- Other protection mods should be able to display their protection in the hud
|
||||||
areas.register_hud_handler = function(handler)
|
areas.register_hud_handler = function(handler)
|
||||||
protection_detectors[#protection_detectors+1] = handler
|
protection_detectors[#protection_detectors + 1] = handler
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Generalized call to registered handlers to add their proeciton labels to the areas list
|
-- 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
|
if #protection_detectors <= 0 then
|
||||||
return res
|
return area_list
|
||||||
end
|
end
|
||||||
|
|
||||||
for idx=1,#protection_detectors do
|
for idx=1,#protection_detectors do
|
||||||
local func = protection_detectors[idx]
|
local func = protection_detectors[idx]
|
||||||
res = func(pos,res)
|
area_list = func(pos,area_list)
|
||||||
end
|
end
|
||||||
return res
|
return area_list
|
||||||
end
|
end
|
||||||
|
|
||||||
--- Returns a list of areas that include the provided position.
|
--- Returns a list of areas that include the provided position.
|
||||||
|
Loading…
Reference in New Issue
Block a user