1
0
Fork 0

Modified the model path verification to take advantage of Maik Justus's

AI search path patch.
This commit is contained in:
durk 2006-12-17 08:01:56 +00:00
parent b34dc24bdc
commit 8634b9124e

View file

@ -384,10 +384,15 @@ bool FGAISchedule::update(time_t now)
// alt = dep->_elevation+19;
// }
// Only allow traffic to be created when the model path exists
// Only allow traffic to be created when the model path (or the AI version of mp) exists
SGPath mp(globals->get_fg_root());
SGPath mp_ai = mp;
mp.append(modelPath);
if (mp.exists())
mp_ai.append("AI");
mp_ai.append(modelPath);
if (mp.exists() || mp_ai.exists())
{
FGAIAircraft *aircraft = new FGAIAircraft(this);
aircraft->setPerformance(m_class); //"jet_transport";