diff --git a/Moose Development/Moose/Core/Spawn.lua b/Moose Development/Moose/Core/Spawn.lua
index d307a2527..b16e1bd79 100644
--- a/Moose Development/Moose/Core/Spawn.lua
+++ b/Moose Development/Moose/Core/Spawn.lua
@@ -1378,19 +1378,19 @@ end
-- local SpawnZone = ZONE:New( ZoneName )
--
-- -- Spawn at the zone center position at the height specified in the ME of the group template!
--- SpawnAirplanes:SpawnFromZone( SpawnZone )
+-- SpawnAirplanes:SpawnInZone( SpawnZone )
--
-- -- Spawn in the zone at a random position at the height specified in the Me of the group template.
--- SpawnAirplanes:SpawnFromZone( SpawnZone, true )
+-- SpawnAirplanes:SpawnInZone( SpawnZone, true )
--
-- -- Spawn in the zone at a random position at the height randomized between 2000 and 4000 meters.
--- SpawnAirplanes:SpawnFromUnit( SpawnZone, true, 2000, 4000 )
+-- SpawnAirplanes:SpawnInZone( SpawnZone, true, 2000, 4000 )
--
-- -- Spawn at the zone center position at the height randomized between 2000 and 4000 meters.
--- SpawnAirplanes:SpawnFromUnit( SpawnZone, false, 2000, 4000 )
+-- SpawnAirplanes:SpawnInZone( SpawnZone, false, 2000, 4000 )
--
-- -- Spawn at the zone center position at the height randomized between 2000 and 4000 meters.
--- SpawnAirplanes:SpawnFromUnit( SpawnZone, nil, 2000, 4000 )
+-- SpawnAirplanes:SpawnInZone( SpawnZone, nil, 2000, 4000 )
--
function SPAWN:SpawnInZone( Zone, RandomizeGroup, MinHeight, MaxHeight, SpawnIndex )
self:F( { self.SpawnTemplatePrefix, Zone, RandomizeGroup, MinHeight, MaxHeight, SpawnIndex } )
diff --git a/docs/Documentation/AI_A2A.html b/docs/Documentation/AI_A2A.html
index 5e103cb10..e0b4ec30e 100644
--- a/docs/Documentation/AI_A2A.html
+++ b/docs/Documentation/AI_A2A.html
@@ -671,7 +671,6 @@
-
- #number
AI_A2A.IdleCount
diff --git a/docs/Documentation/AI_Patrol.html b/docs/Documentation/AI_Patrol.html
index 45a2143e2..004acc069 100644
--- a/docs/Documentation/AI_Patrol.html
+++ b/docs/Documentation/AI_Patrol.html
@@ -936,9 +936,6 @@ Use the method AIPATROLZONE.M
-
-
This table contains the targets detected during patrol.
-
diff --git a/docs/Documentation/Cargo.html b/docs/Documentation/Cargo.html
index 6d992a859..f5bf973b2 100644
--- a/docs/Documentation/Cargo.html
+++ b/docs/Documentation/Cargo.html
@@ -3697,7 +3697,6 @@ The range till cargo will board.
-
-
CARGO_UNIT.CargoCarrier
@@ -3805,6 +3804,7 @@ The range till cargo will board.
-
+ #number
CARGO_UNIT.RunCount
diff --git a/docs/Documentation/Designate.html b/docs/Documentation/Designate.html
index 73252897d..9c043bfc3 100644
--- a/docs/Documentation/Designate.html
+++ b/docs/Documentation/Designate.html
@@ -1160,6 +1160,7 @@ function below will use the range 1-7 just in case
-
+
DESIGNATE.LaserCodes
diff --git a/docs/Documentation/Movement.html b/docs/Documentation/Movement.html
index 0615a2d0a..8126af2b9 100644
--- a/docs/Documentation/Movement.html
+++ b/docs/Documentation/Movement.html
@@ -237,7 +237,6 @@ on defined intervals (currently every minute).
-
- #number
MOVEMENT.AliveUnits
@@ -246,9 +245,6 @@ on defined intervals (currently every minute).
-
-
Contains the counter how many units are currently alive
-
diff --git a/docs/Documentation/Settings.html b/docs/Documentation/Settings.html
index 9b4a8bcab..159a358e6 100644
--- a/docs/Documentation/Settings.html
+++ b/docs/Documentation/Settings.html
@@ -1250,7 +1250,7 @@ true if metric.
-
-
+ #boolean
SETTINGS.Metric
diff --git a/docs/Documentation/Spawn.html b/docs/Documentation/Spawn.html
index ba128c5d0..afcd0739c 100644
--- a/docs/Documentation/Spawn.html
+++ b/docs/Documentation/Spawn.html
@@ -2946,19 +2946,19 @@ when nothing was spawned.
local SpawnZone = ZONE:New( ZoneName )
-- Spawn at the zone center position at the height specified in the ME of the group template!
- SpawnAirplanes:SpawnFromZone( SpawnZone )
+ SpawnAirplanes:SpawnInZone( SpawnZone )
-- Spawn in the zone at a random position at the height specified in the Me of the group template.
- SpawnAirplanes:SpawnFromZone( SpawnZone, true )
+ SpawnAirplanes:SpawnInZone( SpawnZone, true )
-- Spawn in the zone at a random position at the height randomized between 2000 and 4000 meters.
- SpawnAirplanes:SpawnFromUnit( SpawnZone, true, 2000, 4000 )
+ SpawnAirplanes:SpawnInZone( SpawnZone, true, 2000, 4000 )
-- Spawn at the zone center position at the height randomized between 2000 and 4000 meters.
- SpawnAirplanes:SpawnFromUnit( SpawnZone, false, 2000, 4000 )
+ SpawnAirplanes:SpawnInZone( SpawnZone, false, 2000, 4000 )
-- Spawn at the zone center position at the height randomized between 2000 and 4000 meters.
- SpawnAirplanes:SpawnFromUnit( SpawnZone, nil, 2000, 4000 )
+ SpawnAirplanes:SpawnInZone( SpawnZone, nil, 2000, 4000 )
@@ -3003,6 +3003,9 @@ when nothing was spawned.
+
+
By default, no InitLimit
+
@@ -3038,7 +3041,7 @@ when nothing was spawned.
-
-
+ #number
SPAWN.SpawnMaxGroups
@@ -3055,7 +3058,7 @@ when nothing was spawned.
-
-
+ #number
SPAWN.SpawnMaxUnitsAlive
@@ -3383,7 +3386,7 @@ Spawn_BE_KA50 = SPAWN:New( 'BE KA-50@RAMP-Ground Defense' ):Schedule( 600, 0.5 )
-
-
+ #boolean
SPAWN.SpawnUnControlled
diff --git a/docs/Documentation/Spot.html b/docs/Documentation/Spot.html
index 2ca8c13de..d6706e2ed 100644
--- a/docs/Documentation/Spot.html
+++ b/docs/Documentation/Spot.html
@@ -775,7 +775,6 @@ true if it is lasing
-
-
SPOT.ScheduleID
@@ -789,7 +788,6 @@ true if it is lasing
-
-
SPOT.SpotIR
@@ -803,7 +801,6 @@ true if it is lasing
-
-
SPOT.SpotLaser
@@ -817,7 +814,6 @@ true if it is lasing
-
-
SPOT.Target
diff --git a/docs/Documentation/Task_Cargo.html b/docs/Documentation/Task_Cargo.html
index 1a964bad5..119956c02 100644
--- a/docs/Documentation/Task_Cargo.html
+++ b/docs/Documentation/Task_Cargo.html
@@ -562,7 +562,7 @@ based on the tasking capabilities defined in Task#TA
-
-
+ Core.Cargo#CARGO
FSM_PROCESS.Cargo