From eaf001947418598a007803170c515387964c2728 Mon Sep 17 00:00:00 2001 From: Lars Toenning Date: Sat, 17 Feb 2024 22:46:33 +0100 Subject: [PATCH] fix: Remove duplicate AircraftCategoryEntity in flag AircraftCategoryEntity is already part of AllIcaoCountriesCategory --- src/blackmisc/network/entityflags.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/blackmisc/network/entityflags.h b/src/blackmisc/network/entityflags.h index 2cb753647..9a0301cf6 100644 --- a/src/blackmisc/network/entityflags.h +++ b/src/blackmisc/network/entityflags.h @@ -44,7 +44,7 @@ namespace BlackMisc::Network AllIcaoCountriesCategory = AllIcaoAndCountries | AircraftCategoryEntity, //!< includes category DistributorLiveryModel = DistributorEntity | LiveryEntity | ModelEntity, //!< Combined ModelMatchingEntities = AllIcaoEntities | LiveryEntity | ModelEntity, //!< all needed for model matching - AllDbEntitiesNoInfoObjects = AllIcaoCountriesCategory | DistributorLiveryModel | AirportEntity | AircraftCategoryEntity, //!< all DB entities, no info objects + AllDbEntitiesNoInfoObjects = AllIcaoCountriesCategory | DistributorLiveryModel | AirportEntity, //!< all DB entities, no info objects AllDbEntities = AllDbEntitiesNoInfoObjects | DbInfoObjectEntity, //!< all DB stuff AllDbEntitiesNoInfoObjectsNoAirportsAndCategories = AllIcaoAndCountries | DistributorLiveryModel //!< all DB entities, no info objects and airports };