- Added EPLRS option
- EPLRS is on if group has datalink capability
This commit is contained in:
Frank
2021-09-07 11:17:20 +02:00
parent bdf13f29f7
commit aecb92ccd3
6 changed files with 128 additions and 16 deletions

View File

@@ -48,9 +48,9 @@ COMMANDER.version="0.1.0"
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-- TODO: Improve legion selection. Mostly done!
-- TODO: Allow multiple Legions for one mission.
-- TODO: Add ops transports.
-- TODO: Find solution for missions, which require a transport. This is not as easy as it sounds since the selected mission assets restrict the possible transport assets.
-- TODO: Add ops transports.
-- DONE: Allow multiple Legions for one mission.
-- NOGO: Maybe it's possible to preselect the assets for the mission.
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
@@ -183,6 +183,18 @@ function COMMANDER:AddAirwing(Airwing)
return self
end
--- Add an BRIGADE to the commander.
-- @param #COMMANDER self
-- @param Ops.Brigade#BRIGADE Briagde The brigade to add.
-- @return #COMMANDER self
function COMMANDER:AddBrigade(Brigade)
-- Add legion.
self:AddLegion(Brigade)
return self
end
--- Add a LEGION to the commander.
-- @param #COMMANDER self
-- @param Ops.Legion#LEGION Legion The legion to add.