A2G Dispatcher

Fixes issue #1303
This commit is contained in:
Frank 2020-04-08 11:54:09 +02:00
parent cb4a44b512
commit 4b369fae95
2 changed files with 2 additions and 1 deletions

View File

@ -4375,7 +4375,7 @@ do -- AI_A2G_DISPATCHER
Report:Add( string.format( "\n - Squadron Resources: ", #self.DefenseQueue ) )
for DefenderSquadronName, DefenderSquadron in pairs( self.DefenderSquadrons ) do
Report:Add( string.format( " - %s - %d", DefenderSquadronName, DefenderSquadron.ResourceCount and DefenderSquadron.ResourceCount or "n/a" ) )
Report:Add( string.format( " - %s - %s", DefenderSquadronName, DefenderSquadron.ResourceCount and tostring(DefenderSquadron.ResourceCount) or "n/a" ) )
end
self:F( Report:Text( "\n" ) )

View File

@ -1063,6 +1063,7 @@ function EVENT:onEvent( Event )
if Event.id==EVENTS.LandingAfterEjection then
-- Place is here the UNIT of which the pilot ejected.
--local name=Event.place:getName() -- This returns a DCS error "Airbase doesn't exit" :(
-- However, this is not a big thing, as the aircraft the pilot ejected from is usually long crashed before the ejected pilot touches the ground.
--Event.Place=UNIT:Find(Event.place)
else
Event.Place=AIRBASE:Find(Event.place)