Controllable log output

Controllable, changed self:E to self:F/T2 since it was spamming the DCS log.
Airboss docs.
Spawn scheduler(self,...) --> scheduler(nil,...)
This commit is contained in:
Frank
2019-01-03 14:09:19 +01:00
parent cec6940aeb
commit 9700776468
3 changed files with 11 additions and 10 deletions

View File

@@ -2639,7 +2639,7 @@ function SPAWN:_OnEngineShutDown( EventData )
self:T( { "EngineShutDown: ", "ReSpawn:", SpawnGroup:GetName(), SpawnGroupIndex } )
--self:ReSpawn( SpawnGroupIndex )
-- Delay respawn by three seconds due to DCS 2.5.4 OB bug https://github.com/FlightControl-Master/MOOSE/issues/1076
SCHEDULER:New(self, self.ReSpawn, {SpawnGroupIndex}, 3)
SCHEDULER:New(nil, self.ReSpawn, {self, SpawnGroupIndex}, 3)
end
end
end