1
0
Fork 0

Improve AI parking-pushback warning message

Specify the airport when a parking has no associated pushback route.
Improvement from WKitty42
This commit is contained in:
James Turner 2018-04-05 12:58:58 +01:00
parent 28a77ed1d9
commit 9000185b92

View file

@ -138,7 +138,8 @@ bool FGAIFlightPlan::createPushBack(FGAIAircraft *ac,
// there aren't any routes for this parking.
if (!pushForwardSegment) {
SG_LOG(SG_AI, SG_DEV_WARN, "Gate " << parking->ident() << "/" << parking->getName()
<< "doesn't seem to have routes associated with it.");
<< " at " << dep->getId()
<< " doesn't seem to have routes associated with it.");
return false;
}