This commit is contained in:
Frank 2020-08-30 23:44:15 +02:00
parent 637081ebdd
commit 9a91145f89
3 changed files with 9 additions and 9 deletions

View File

@ -115,11 +115,11 @@ function ARMYGROUP:New(GroupName)
-- Start the status monitoring.
self:__Status(-1)
-- Start check zone timer.
self.timerCheckZone=TIMER:New(self._CheckInZones, self):Start(2, 5)
-- Start queue update timer.
self.timerQueueUpdate=TIMER:New(self._QueueUpdate, self):Start(3, 30)
self.timerQueueUpdate=TIMER:New(self._QueueUpdate, self):Start(2, 5)
-- Start check zone timer.
self.timerCheckZone=TIMER:New(self._CheckInZones, self):Start(2, 30)
return self
end

View File

@ -319,7 +319,7 @@ AUFTRAG.Type={
FERRY="Ferry Flight",
INTERCEPT="Intercept",
ORBIT="Orbit",
GCCAP="Patrol",
GCCAP="Ground Controlled CAP",
RECON="Recon",
RECOVERYTANKER="Recovery Tanker",
RESCUEHELO="Rescue Helo",

View File

@ -155,12 +155,12 @@ function NAVYGROUP:New(GroupName)
-- Start the status monitoring.
self:__Status(-1)
-- Start queue update timer.
self.timerQueueUpdate=TIMER:New(self._QueueUpdate, self):Start(2, 5)
-- Start check zone timer.
self.timerCheckZone=TIMER:New(self._CheckInZones, self):Start(2, 5)
-- Start queue update timer.
self.timerQueueUpdate=TIMER:New(self._QueueUpdate, self):Start(3, 60)
self.timerCheckZone=TIMER:New(self._CheckInZones, self):Start(2, 60)
return self
end