mirror of
https://github.com/FlightControl-Master/MOOSE.git
synced 2025-10-29 16:58:06 +00:00
#AUFTRAG
* Bring options for afterburner usage down to AUFTRAG level #OpsGroup (Flightgroup) * Follow setting option for AB usage from mission, if set, generally and for execution phase of the AUFTRAG
This commit is contained in:
parent
a0219e4a08
commit
a4e576e26d
@ -3084,6 +3084,39 @@ function AUFTRAG:SetRequiredCarriers(NcarriersMin, NcarriersMax)
|
||||
return self
|
||||
end
|
||||
|
||||
--- Set that (jet) aircraft are generally **not** allowed to use afterburner. Default is use of afterburner is allowed.
|
||||
-- @param #AUFTRAG self
|
||||
-- @return #AUFTRAG self
|
||||
function AUFTRAG:SetProhibitAfterburner()
|
||||
self.prohibitAB = true
|
||||
return self
|
||||
end
|
||||
|
||||
--- Set that (jet) aircraft are generally allowed to use afterburner. Default is use of afterburner is allowed.
|
||||
-- @param #AUFTRAG self
|
||||
-- @return #AUFTRAG self
|
||||
function AUFTRAG:SetAllowAfterburner()
|
||||
self.prohibitAB = false
|
||||
return self
|
||||
end
|
||||
|
||||
--- Set that (jet) aircraft are **not** allowed to use afterburner in mission execution phase. Default is use of afterburner is allowed.
|
||||
-- @param #AUFTRAG self
|
||||
-- @return #AUFTRAG self
|
||||
function AUFTRAG:SetProhibitAfterburnerExecutePhase()
|
||||
self.prohibitABExecute = true
|
||||
return self
|
||||
end
|
||||
|
||||
--- Set that (jet) aircraft are allowed to use afterburner in mission execution phase. Default is use of afterburner is allowed.
|
||||
-- @param #AUFTRAG self
|
||||
-- @return #AUFTRAG self
|
||||
function AUFTRAG:SetAllowAfterburnerExecutePhase()
|
||||
self.prohibitABExecute = false
|
||||
return self
|
||||
end
|
||||
|
||||
-- prohibitABExecute
|
||||
|
||||
--- **[LEGION, COMMANDER, CHIEF]** Assign a legion cohort to the mission. Only these cohorts will be considered for the job.
|
||||
-- @param #AUFTRAG self
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user