**FLEET v0.0.1**
- New class for naval units corresponding to AIRWING and BRIGADE

**FLOTILLA v0.0.1**
- New class for naval units corresponding to SQUADRON and PLATOON
This commit is contained in:
Frank
2022-04-08 22:18:35 +02:00
parent c2b1c2b1d8
commit 4ba0a2dafb
8 changed files with 676 additions and 5 deletions

View File

@@ -136,12 +136,10 @@
--
-- @extends Core.Fsm#FSM
--- *A small group of determined and like-minded people can change the course of history.* --- Mahatma Gandhi
--- *A small group of determined and like-minded people can change the course of history* -- Mahatma Gandhi
--
-- ===
--
-- ![Banner Image](..\Presentations\OPS\OpsGroup\_Main.png)
--
-- # The OPSGROUP Concept
--
-- The OPSGROUP class contains common functions used by other classes such as FLIGHTGROUP, NAVYGROUP and ARMYGROUP.
@@ -9081,7 +9079,11 @@ function OPSGROUP:_CheckGroupDone(delay)
if self.legion then
self:T(self.lid..string.format("Passed final WP, adinfinitum=FALSE, LEGION set ==> RTZ"))
self:RTZ(self.legion.spawnzone)
if self.isArmygroup then
self:RTZ(self.legion.spawnzone)
elseif self.isNavygroup then
self:RTZ(self.legion.portzone)
end
else