From 83ddfe7598532361e84eb752130d4e41ce712c9e Mon Sep 17 00:00:00 2001 From: Ambroise Garel <47314805+akaAgar@users.noreply.github.com> Date: Tue, 16 Sep 2025 22:15:53 +0200 Subject: [PATCH] Fixed invalid parameter name in DCSEx.zones.getAirbases --- Script/DCS extensions/Zones.lua | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Script/DCS extensions/Zones.lua b/Script/DCS extensions/Zones.lua index b10c421..960140a 100644 --- a/Script/DCS extensions/Zones.lua +++ b/Script/DCS extensions/Zones.lua @@ -2,7 +2,7 @@ -- DCSEX.ZONES - FUNCTIONS RELATED TO MAP TRIGGER ZONES -- ==================================================================================== -- DCSEx.zones.drawOnMap(zoneTable, lineColor, fillColor, lineType, drawName, readOnly) --- DCSEx.zones.getAirbases(zone, coalition, allowShips) +-- DCSEx.zones.getAirbases(zone, coalID, allowShips) -- DCSEx.zones.getAll() -- DCSEx.zones.getByName(name) -- DCSEx.zones.getCenter(zoneTable) @@ -77,19 +77,19 @@ end -- Returns all airbases in the zone ------------------------------------- -- @param zoneTable Table of the zone in which to search --- @param coalition Coalition (from the coalition.side enum) the airbase must belong to. Default is nil, which means "all coalitions" +-- @param coalID Coalition (from the coalition.side enum) the airbase must belong to. Default is nil, which means "all coalitions" -- @param allowShips Should ships be allowed? -- @return Table of airbases ------------------------------------- -function DCSEx.zones.getAirbases(zoneTable, coalition, allowShips) - coalition = coalition or nil +function DCSEx.zones.getAirbases(zoneTable, coalID, allowShips) + coalID = coalID or nil allowShips = allowShips or false - local coalitions = { coalition.side.RED, coalition.side.BLUE } - if coalition then coalitions = { coalition } end + local coalitionSides = { coalition.side.RED, coalition.side.BLUE } + if coalID then coalitionSides = { coalID } end local validAirbases = {} - for _,side in ipairs(coalitions) do + for _,side in ipairs(coalitionSides) do for _,ab in ipairs(coalition.getAirbases(side)) do local abDesc = ab:getDesc() local isValid = true