refs #748, fixed airport entity and reader resolution

This commit is contained in:
Klaus Basan
2016-10-20 03:37:41 +02:00
parent 14469f2d4e
commit 35283d8887
3 changed files with 10 additions and 0 deletions

View File

@@ -26,6 +26,11 @@ namespace BlackCore
f |= ModelReader;
}
if (entity.testFlag(CEntityFlags::AirportEntity))
{
f |= AirportReader;
}
if (entity.testFlag(CEntityFlags::InfoObjectEntity)) { f |= InfoDataReader; }
if (entity.testFlag(CEntityFlags::BookingEntity)) { f |= VatsimBookingReader; }
if (entity.testFlag(CEntityFlags::VatsimDataFile)) { f |= VatsimDataReader; }