diff --git a/Documentation/AI.AI_A2A_Cap.html b/Documentation/AI.AI_A2A_Cap.html
index 48309e0a2..1c9284d3a 100644
--- a/Documentation/AI.AI_A2A_Cap.html
+++ b/Documentation/AI.AI_A2A_Cap.html
@@ -2115,6 +2115,18 @@ Use the method AI.AI_Cap#AI
AI_A2A_CAP.RTBRoute(AIGroup, Fsm) |
+ |
+
+
+ AI_A2A_CAP.RTBSpeedMaxFactor |
+
+
+ |
+
+
+ AI_A2A_CAP.RTBSpeedMinFactor |
+
+
|
@@ -2169,6 +2181,12 @@ Use the method AI.AI_Cap#AI
AI_A2A_CAP:SetRTBSpeed(RTBMinSpeed, RTBMaxSpeed) |
Sets (modifies) the minimum and maximum RTB speed of the patrol.
+ |
+
+
+ AI_A2A_CAP:SetRTBSpeedFactors(MinFactor, MaxFactor) |
+
+ Set the min and max factors on RTB speed.
|
@@ -6675,6 +6693,68 @@ Once the time is finished, the old AI will return to the base.
+
+
+
+
+
+
+
+
Set the min and max factors on RTB speed.
+
+
+
Use this, if your planes are heading back to base too fast. Default values are 0.5 and 0.6.
+The RTB speed is calculated as the max speed of the unit multiplied by MinFactor (lower bracket) and multiplied by MaxFactor (upper bracket).
+A random value in this bracket is then applied in the waypoint routing generation.
+
+
+
+
Defined in:
+
+
Parameters:
+
+
+
+ #number
+ MinFactor
+
+
+
+
+
Lower bracket factor. Defaults to 0.5.
+
+
+
+
+
+
+ #number
+ MaxFactor
+
+
+
+
+
Upper bracket factor. Defaults to 0.6.
+
+
+
+
Return value:
+
+
+
diff --git a/Documentation/AI.AI_A2G_Dispatcher.html b/Documentation/AI.AI_A2G_Dispatcher.html
index 8706ec973..5ce1bc4a2 100644
--- a/Documentation/AI.AI_A2G_Dispatcher.html
+++ b/Documentation/AI.AI_A2G_Dispatcher.html
@@ -4670,6 +4670,17 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
The Defender Default Settings over all Squadrons.
+
+
+
+
@@ -13104,6 +13115,17 @@ multiplied by the Overhead and rounded up to the smallest integer.
The Defender Default Settings over all Squadrons.
+
+
+
+
@@ -14421,6 +14443,17 @@ multiplied by the Overhead and rounded up to the smallest integer.
The Defender Default Settings over all Squadrons.
+
+
+
+
@@ -16044,6 +16077,17 @@ multiplied by the Overhead and rounded up to the smallest integer.
The Defender Default Settings over all Squadrons.
+
+
+
+
diff --git a/Documentation/AI.AI_Air.html b/Documentation/AI.AI_Air.html
index fe47c4118..755982feb 100644
--- a/Documentation/AI.AI_Air.html
+++ b/Documentation/AI.AI_Air.html
@@ -1815,6 +1815,18 @@ and the resulting state will be the To state.
AI_AIR.RTBRoute(AIGroup, Fsm) |
+ |
+
+
+ AI_AIR.RTBSpeedMaxFactor |
+
+
+ |
+
+
+ AI_AIR.RTBSpeedMinFactor |
+
+
|
@@ -1869,6 +1881,12 @@ and the resulting state will be the To state.
AI_AIR:SetRTBSpeed(RTBMinSpeed, RTBMaxSpeed) |
Sets (modifies) the minimum and maximum RTB speed of the patrol.
+ |
+
+
+ AI_AIR:SetRTBSpeedFactors(MinFactor, MaxFactor) |
+
+ Set the min and max factors on RTB speed.
|
@@ -4786,6 +4804,68 @@ Once the time is finished, the old AI will return to the base.
+
+
+
+
+
+
+
+
Set the min and max factors on RTB speed.
+
+
+
Use this, if your planes are heading back to base too fast. Default values are 0.5 and 0.6.
+The RTB speed is calculated as the max speed of the unit multiplied by MinFactor (lower bracket) and multiplied by MaxFactor (upper bracket).
+A random value in this bracket is then applied in the waypoint routing generation.
+
+
+
+
Defined in:
+
+
Parameters:
+
+
+
+ #number
+ MinFactor
+
+
+
+
+
Lower bracket factor. Defaults to 0.5.
+
+
+
+
+
+
+ #number
+ MaxFactor
+
+
+
+
+
Upper bracket factor. Defaults to 0.6.
+
+
+
+
Return value:
+
+
+
diff --git a/Documentation/AI.AI_Air_Patrol.html b/Documentation/AI.AI_Air_Patrol.html
index e424b1163..fde497404 100644
--- a/Documentation/AI.AI_Air_Patrol.html
+++ b/Documentation/AI.AI_Air_Patrol.html
@@ -2058,6 +2058,18 @@ Use the method AI.AI_Cap
AI_AIR_PATROL.RTBRoute(AIGroup, Fsm) |
+ |
+
+
+ AI_AIR_PATROL.RTBSpeedMaxFactor |
+
+
+ |
+
+
+ AI_AIR_PATROL.RTBSpeedMinFactor |
+
+
|
@@ -2112,6 +2124,12 @@ Use the method AI.AI_Cap
AI_AIR_PATROL:SetRTBSpeed(RTBMinSpeed, RTBMaxSpeed) |
Sets (modifies) the minimum and maximum RTB speed of the patrol.
+ |
+
+
+ AI_AIR_PATROL:SetRTBSpeedFactors(MinFactor, MaxFactor) |
+
+ Set the min and max factors on RTB speed.
|
@@ -6117,6 +6135,68 @@ Once the time is finished, the old AI will return to the base.
+
+
+
+
+
+
+
+
Set the min and max factors on RTB speed.
+
+
+
Use this, if your planes are heading back to base too fast. Default values are 0.5 and 0.6.
+The RTB speed is calculated as the max speed of the unit multiplied by MinFactor (lower bracket) and multiplied by MaxFactor (upper bracket).
+A random value in this bracket is then applied in the waypoint routing generation.
+
+
+
+
Defined in:
+
+
Parameters:
+
+
+
+ #number
+ MinFactor
+
+
+
+
+
Lower bracket factor. Defaults to 0.5.
+
+
+
+
+
+
+ #number
+ MaxFactor
+
+
+
+
+
Upper bracket factor. Defaults to 0.6.
+
+
+
+
Return value:
+
+
+
diff --git a/Documentation/AI.AI_Air_Squadron.html b/Documentation/AI.AI_Air_Squadron.html
index 347d4883d..9403c0f3b 100644
--- a/Documentation/AI.AI_Air_Squadron.html
+++ b/Documentation/AI.AI_Air_Squadron.html
@@ -2448,17 +2448,6 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
-
-
-
-
@@ -3530,17 +3519,6 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
-
-
-
-
diff --git a/Documentation/AI.AI_Cargo.html b/Documentation/AI.AI_Cargo.html
index 2f3958971..b233efd63 100644
--- a/Documentation/AI.AI_Cargo.html
+++ b/Documentation/AI.AI_Cargo.html
@@ -2644,7 +2644,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
-
+
Wrapper.Group#GROUP
AI_CARGO.CargoCarrier
@@ -4674,7 +4674,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
-
+
Wrapper.Group#GROUP
AI_CARGO.CargoCarrier
@@ -5286,7 +5286,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
-
+
Wrapper.Group#GROUP
AI_CARGO.CargoCarrier
@@ -6790,7 +6790,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
-
+
Wrapper.Group#GROUP
AI_CARGO.CargoCarrier
diff --git a/Documentation/AI.AI_Cargo_Airplane.html b/Documentation/AI.AI_Cargo_Airplane.html
index c8334bf2c..7275be5cf 100644
--- a/Documentation/AI.AI_Cargo_Airplane.html
+++ b/Documentation/AI.AI_Cargo_Airplane.html
@@ -2639,6 +2639,9 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
+
+
Set destination airbase for next :Route() command.
+
@@ -4429,6 +4432,9 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
+
+
Set destination airbase for next :Route() command.
+
@@ -5061,6 +5067,9 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
+
+
Set destination airbase for next :Route() command.
+
@@ -6585,6 +6594,9 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
+
+
Set destination airbase for next :Route() command.
+
diff --git a/Documentation/AI.AI_Cargo_Helicopter.html b/Documentation/AI.AI_Cargo_Helicopter.html
index 1c8376119..d9e6f3133 100644
--- a/Documentation/AI.AI_Cargo_Helicopter.html
+++ b/Documentation/AI.AI_Cargo_Helicopter.html
@@ -2796,22 +2796,28 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
@@ -4714,22 +4720,28 @@ Adjust if necessary.
@@ -5384,22 +5396,28 @@ Adjust if necessary.
@@ -6946,22 +6964,28 @@ Adjust if necessary.
diff --git a/Documentation/AI.AI_Patrol.html b/Documentation/AI.AI_Patrol.html
index fe3f25e63..c60951740 100644
--- a/Documentation/AI.AI_Patrol.html
+++ b/Documentation/AI.AI_Patrol.html
@@ -3147,6 +3147,9 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
+
+ This table contains the targets detected during patrol.
+
@@ -6394,6 +6397,9 @@ Note that this method is required, as triggers the next route when patrolling fo
+
+ This table contains the targets detected during patrol.
+
@@ -7138,6 +7144,9 @@ Note that this method is required, as triggers the next route when patrolling fo
+
+ This table contains the targets detected during patrol.
+
@@ -8774,6 +8783,9 @@ Note that this method is required, as triggers the next route when patrolling fo
+
+ This table contains the targets detected during patrol.
+
diff --git a/Documentation/Cargo.CargoCrate.html b/Documentation/Cargo.CargoCrate.html
index a39fb1589..30f891073 100644
--- a/Documentation/Cargo.CargoCrate.html
+++ b/Documentation/Cargo.CargoCrate.html
@@ -1760,17 +1760,6 @@ Controls a network of short range air/missile defense groups.
Field(s)
-
@@ -2439,17 +2428,6 @@ Controls a network of short range air/missile defense groups.
Field(s)
-
diff --git a/Documentation/Cargo.CargoGroup.html b/Documentation/Cargo.CargoGroup.html
index 04e412dad..c7850c4ae 100644
--- a/Documentation/Cargo.CargoGroup.html
+++ b/Documentation/Cargo.CargoGroup.html
@@ -1849,6 +1849,9 @@ Controls a network of short range air/missile defense groups.
+
+
Then we register the new group in the database
+
@@ -3181,6 +3184,9 @@ This works for ground only groups.
+
+
Then we register the new group in the database
+
diff --git a/Documentation/Core.Settings.html b/Documentation/Core.Settings.html
index 85b099ed5..e525f44e3 100644
--- a/Documentation/Core.Settings.html
+++ b/Documentation/Core.Settings.html
@@ -2725,7 +2725,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
- #string
+
SETTINGS.A2ASystem
@@ -2780,11 +2780,22 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
+
@@ -4819,7 +4830,7 @@ It is advised to use this method at the start of the mission.
+
+ SPAWN.communication |
+
+
+ |
+
+
+ SPAWN.frequency |
+
+
|
@@ -3383,6 +3395,9 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
+
+ Don't repeat the group from Take-Off till Landing and back Take-Off by ReSpawning.
+
@@ -3460,6 +3475,17 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
+
+
+
+
@@ -3496,6 +3522,17 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
+
+
+
+
@@ -3584,6 +3621,20 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
+
+
+
+
@@ -3595,6 +3646,20 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
+
+ By default, no InitLimit
+
+
+
+
+
@@ -3648,7 +3713,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
-
+ #number
SPAWN.SpawnMaxGroups
@@ -3662,7 +3727,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
-
+ #number
SPAWN.SpawnMaxUnitsAlive
@@ -3883,6 +3948,28 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
When working in UnControlled mode, all planes are Spawned in UnControlled mode before the scheduler starts.
+
+
+
+
+
@@ -8768,6 +8855,9 @@ This is needed to ensure that Re-SPAWNing only is done for landed AIR Groups. Don't repeat the group from Take-Off till Landing and back Take-Off by ReSpawning.
+
@@ -8845,6 +8935,17 @@ This is needed to ensure that Re-SPAWNing only is done for landed AIR Groups.
+
+
+
@@ -8881,6 +8982,17 @@ This is needed to ensure that Re-SPAWNing only is done for landed AIR Groups.
+
+
+
@@ -8969,6 +9081,20 @@ This is needed to ensure that Re-SPAWNing only is done for landed AIR Groups.
+
+
+
@@ -8980,6 +9106,20 @@ This is needed to ensure that Re-SPAWNing only is done for landed AIR Groups. By default, no InitLimit
+
+
+
+
+
@@ -9033,7 +9173,7 @@ This is needed to ensure that Re-SPAWNing only is done for landed AIR Groups.
-
+ #number
SPAWN.SpawnMaxGroups
@@ -9047,7 +9187,7 @@ This is needed to ensure that Re-SPAWNing only is done for landed AIR Groups.
-
+ #number
SPAWN.SpawnMaxUnitsAlive
@@ -9268,6 +9408,28 @@ This is needed to ensure that Re-SPAWNing only is done for landed AIR Groups. When working in UnControlled mode, all planes are Spawned in UnControlled mode before the scheduler starts.
+
+
+
+
+
diff --git a/Documentation/Functional.Designate.html b/Documentation/Functional.Designate.html
index 846460ae9..4ae885cc4 100644
--- a/Documentation/Functional.Designate.html
+++ b/Documentation/Functional.Designate.html
@@ -3444,6 +3444,17 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
+
+
+
+
@@ -6601,6 +6612,17 @@ Designate:SetFlashStatusMenu( false )
+
+
+
+
@@ -7400,6 +7422,17 @@ Designate:SetFlashStatusMenu( false )
+
+
+
+
@@ -8169,6 +8202,17 @@ Designate:SetFlashStatusMenu( false )
+
+
+
+
@@ -9830,6 +9874,17 @@ Designate:SetFlashStatusMenu( false )
+
+
+
+
diff --git a/Documentation/Functional.Detection.html b/Documentation/Functional.Detection.html
index cb1809d5d..0be88faf5 100644
--- a/Documentation/Functional.Detection.html
+++ b/Documentation/Functional.Detection.html
@@ -18901,28 +18901,6 @@ When moose is loading dynamically (for moose class development), tracing is swit
-
-
-
-
-
@@ -23604,28 +23582,6 @@ zones that reflect cloudy areas where detected units may not be so easily visual
-
-
-
-
-
@@ -25372,28 +25328,6 @@ zones that reflect cloudy areas where detected units may not be so easily visual
-
-
-
-
-
diff --git a/Documentation/Functional.Mantis.html b/Documentation/Functional.Mantis.html
index 91edc082c..45cc60254 100644
--- a/Documentation/Functional.Mantis.html
+++ b/Documentation/Functional.Mantis.html
@@ -2910,17 +2910,6 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
The #DETECTION_AREAS object for AWACS
-
-
-
-
@@ -3356,9 +3345,6 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
-
- switch alarm state RED
-
@@ -6575,17 +6561,6 @@ E.g. `mymantis:SetAdvancedMode(true, 90)`
The #DETECTION_AREAS object for AWACS
-
-
-
-
@@ -7021,9 +6996,6 @@ E.g. `mymantis:SetAdvancedMode(true, 90)`
-
- switch alarm state RED
-
diff --git a/Documentation/Functional.Rat.html b/Documentation/Functional.Rat.html
index 4c5312713..5fdea8250 100644
--- a/Documentation/Functional.Rat.html
+++ b/Documentation/Functional.Rat.html
@@ -3369,6 +3369,12 @@ manager:Stop(7200)
RAT.termtype |
Type of terminal to be used when spawning at an airbase.
+ |
+
+
+ RAT.type |
+
+
|
@@ -4336,6 +4342,18 @@ and any spaces before and after the resulting name are removed.
RAT:_TranslateRotate(SpawnIndex, SpawnRootX, SpawnRootY, SpawnX, SpawnY, SpawnAngle) |
+ |
+
+
+ RAT.communication |
+
+
+ |
+
+
+ RAT.frequency |
+
+
|
@@ -6711,6 +6729,17 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
Type of terminal to be used when spawning at an airbase.
+
+
+
+
@@ -14591,6 +14620,17 @@ Initializes the ratcraft array and group menu.
Type of terminal to be used when spawning at an airbase.
+
+
+
+
@@ -20581,6 +20621,17 @@ This is needed to ensure that Re-SPAWNing only is done for landed AIR Groups.Type of terminal to be used when spawning at an airbase.
+
+
+
+
diff --git a/Documentation/Functional.Scoring.html b/Documentation/Functional.Scoring.html
index 2936b6650..8685881d1 100644
--- a/Documentation/Functional.Scoring.html
+++ b/Documentation/Functional.Scoring.html
@@ -2983,7 +2983,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
-
+ #boolean
SCORING.penaltyoncoalitionchange
@@ -2994,7 +2994,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
- #boolean
+
SCORING.penaltyonfratricide
@@ -5503,7 +5503,7 @@ The scale magnifies the scores given to the players.
-
+ #boolean
SCORING.penaltyoncoalitionchange
@@ -5514,7 +5514,7 @@ The scale magnifies the scores given to the players.
- #boolean
+
SCORING.penaltyonfratricide
diff --git a/Documentation/Ops.Airboss.html b/Documentation/Ops.Airboss.html
index 9cb18cbab..d46bf0b96 100644
--- a/Documentation/Ops.Airboss.html
+++ b/Documentation/Ops.Airboss.html
@@ -38709,6 +38709,9 @@ When moose is loading dynamically (for moose class development), tracing is swit
+
+
Set case to that of lead.
+
@@ -38766,20 +38769,6 @@ When moose is loading dynamically (for moose class development), tracing is swit
-
-
@@ -38925,7 +38914,7 @@ When moose is loading dynamically (for moose class development), tracing is swit
-
Set section lead of player flight.
+
Make player section lead if he was not before.
@@ -38949,6 +38938,9 @@ When moose is loading dynamically (for moose class development), tracing is swit
+
+
Set Stable Hover
+
@@ -38982,9 +38974,6 @@ When moose is loading dynamically (for moose class development), tracing is swit
-
-
Set time stamp.
-
diff --git a/Documentation/Ops.CSAR.html b/Documentation/Ops.CSAR.html
index 16b31dd90..c4803fac9 100644
--- a/Documentation/Ops.CSAR.html
+++ b/Documentation/Ops.CSAR.html
@@ -2303,12 +2303,6 @@ Create a late-activated single infantry unit as template in the mission editor a
CSAR.inTransitGroups |
- |
-
-
- CSAR.index |
-
-
|
@@ -3603,7 +3597,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
-
+ #table
CSAR.FreeVHFFrequencies
@@ -3706,11 +3700,14 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
@@ -3916,11 +3913,14 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
@@ -3941,11 +3941,25 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
+
@@ -4044,17 +4058,6 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
contain a table for each SAR with all units he has with the original names
-
-
-
-
@@ -8437,7 +8440,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
-
+ #table
CSAR.FreeVHFFrequencies
@@ -8540,11 +8543,14 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
@@ -8750,11 +8756,14 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
@@ -8775,11 +8784,25 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
+
@@ -8878,17 +8901,6 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
contain a table for each SAR with all units he has with the original names
-
-
-
-
@@ -10764,7 +10776,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
-
+ #table
CSAR.FreeVHFFrequencies
@@ -10867,11 +10879,14 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
@@ -11077,11 +11092,14 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
@@ -11102,11 +11120,25 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
+
@@ -11205,17 +11237,6 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
contain a table for each SAR with all units he has with the original names
-
-
-
-
diff --git a/Documentation/Ops.CTLD.html b/Documentation/Ops.CTLD.html
index 806d307d2..88540456a 100644
--- a/Documentation/Ops.CTLD.html
+++ b/Documentation/Ops.CTLD.html
@@ -7042,7 +7042,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
- #table
+
CTLD.FreeFMFrequencies
@@ -7053,7 +7053,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
-
+ #table
CTLD.FreeUHFFrequencies
@@ -14566,7 +14566,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
- #table
+
CTLD.FreeFMFrequencies
@@ -14577,7 +14577,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
-
+ #table
CTLD.FreeUHFFrequencies
@@ -16931,7 +16931,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
- #table
+
CTLD.FreeFMFrequencies
@@ -16942,7 +16942,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
-
+ #table
CTLD.FreeUHFFrequencies
@@ -21439,6 +21439,17 @@ When moose is loading dynamically (for moose class development), tracing is swit
Can transport crate.
+
+
+
+
@@ -29279,6 +29290,17 @@ When moose is loading dynamically (for moose class development), tracing is swit
template for a group of 10 paratroopers
+
+
+
+
@@ -30515,6 +30537,17 @@ Expected template names are the ones in the rounded brackets.
template for a group of 10 paratroopers
+
+
+
+
diff --git a/Documentation/Tasking.Task.html b/Documentation/Tasking.Task.html
index 75217c0a1..2995d3cbe 100644
--- a/Documentation/Tasking.Task.html
+++ b/Documentation/Tasking.Task.html
@@ -2831,17 +2831,6 @@ but can separately be modified later in your mission using the
-
-
-
-
@@ -7478,17 +7467,6 @@ If the Unit is part of the Task, true is returned.
-
-
-
-
diff --git a/Documentation/Tasking.Task_A2A_Dispatcher.html b/Documentation/Tasking.Task_A2A_Dispatcher.html
index cdb6c43f4..7666f92b4 100644
--- a/Documentation/Tasking.Task_A2A_Dispatcher.html
+++ b/Documentation/Tasking.Task_A2A_Dispatcher.html
@@ -2824,7 +2824,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
-
+ #boolean
TASK_A2A_DISPATCHER.FlashNewTask
@@ -3549,7 +3549,7 @@ If too large, any airborne cap may not be able to reach the detected target area
-
+ #boolean
TASK_A2A_DISPATCHER.FlashNewTask
@@ -4725,7 +4725,7 @@ If too large, any airborne cap may not be able to reach the detected target area
-
+ #boolean
TASK_A2A_DISPATCHER.FlashNewTask
@@ -6207,7 +6207,7 @@ If too large, any airborne cap may not be able to reach the detected target area
-
+ #boolean
TASK_A2A_DISPATCHER.FlashNewTask
diff --git a/Documentation/Tasking.Task_Cargo.html b/Documentation/Tasking.Task_Cargo.html
index 0a1befd29..b99bc16a5 100644
--- a/Documentation/Tasking.Task_Cargo.html
+++ b/Documentation/Tasking.Task_Cargo.html
@@ -3129,6 +3129,17 @@ based on the tasking capabilities defined in
+
+
+
diff --git a/Documentation/Tasking.Task_Cargo_Dispatcher.html b/Documentation/Tasking.Task_Cargo_Dispatcher.html
index 2c650a628..edefbeeee 100644
--- a/Documentation/Tasking.Task_Cargo_Dispatcher.html
+++ b/Documentation/Tasking.Task_Cargo_Dispatcher.html
@@ -3102,7 +3102,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
+
+
+
+
+
+
+
+
TASK_CARGO_DISPATCHER.DefaultDeployZones
@@ -4181,7 +4225,7 @@ This method can only be used once!
+
+
+
+
+
+
+
+
TASK_CARGO_DISPATCHER.DefaultDeployZones
@@ -5039,7 +5127,7 @@ This method can only be used once!
+
+
+
+
+
+
+
+
TASK_CARGO_DISPATCHER.DefaultDeployZones
@@ -6532,7 +6664,7 @@ This method can only be used once!
+
+
+
+
+
+
+
+
TASK_CARGO_DISPATCHER.DefaultDeployZones
diff --git a/Documentation/Utils.FiFo.html b/Documentation/Utils.FiFo.html
index 170fffb6c..721769430 100644
--- a/Documentation/Utils.FiFo.html
+++ b/Documentation/Utils.FiFo.html
@@ -3136,17 +3136,6 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
-
-
-
-
@@ -3996,17 +3985,6 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
-
-
-
-
diff --git a/Documentation/Wrapper.Marker.html b/Documentation/Wrapper.Marker.html
index cbd6b1983..55123ea1d 100644
--- a/Documentation/Wrapper.Marker.html
+++ b/Documentation/Wrapper.Marker.html
@@ -2908,28 +2908,6 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
Coordinate of the mark.
-
-
-
-
-
@@ -3007,6 +2985,28 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
Text displayed in the mark panel.
+
+
+
+
+
@@ -5014,28 +5014,6 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
Coordinate of the mark.
-
-
-
-
-
@@ -5113,6 +5091,28 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
Text displayed in the mark panel.
+
+
+
+
+
@@ -6628,28 +6628,6 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
Coordinate of the mark.
-
-
-
-
-
@@ -6727,6 +6705,28 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
Text displayed in the mark panel.
+
+
+
+
+