Added TUM.wingmen.getContactsAsReportString function

This commit is contained in:
Ambroise Garel
2025-07-25 15:51:29 +02:00
parent e39e1d529d
commit 86bb698167
3 changed files with 63 additions and 43 deletions

View File

@@ -141,14 +141,14 @@ do
if TUM.mission.onClockTick() then return nextTickTime end
elseif clockTick % 4 == 1 then
if TUM.airForce.onClockTick(TUM.settings.getPlayerCoalition()) then return nextTickTime end
if TUM.wingmen.onClockTick() then return nextTickTime end
elseif clockTick % 4 == 2 then
if TUM.supportAWACS.onClockTick() then return nextTickTime end
else
if TUM.airForce.onClockTick(TUM.settings.getEnemyCoalition()) then return nextTickTime end
if TUM.wingmen.onClockTick() then return nextTickTime end
end
if TUM.wingmen.onClockTick() then return nextTickTime end
return nextTickTime
end