mirror of
https://github.com/akaAgar/the-universal-mission-for-dcs-world.git
synced 2025-11-25 19:31:01 +00:00
Fixed invalid parameter name in DCSEx.zones.getAirbases
This commit is contained in:
parent
d0355af8e3
commit
83ddfe7598
@ -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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user