diff options
author | Shauren <shauren.trinity@gmail.com> | 2025-01-06 21:54:48 +0100 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2025-01-06 21:54:48 +0100 |
commit | edbbbf8be3569eb2c2c44617b0ff1ba878d812a9 (patch) | |
tree | 61ddba028220861af53771dbd240e70ab0d3d925 | |
parent | b18d0b8c68eb7d122098d0b0da505f78a3143949 (diff) |
Core/DataStores: Define new taxi node flags
-rw-r--r-- | src/server/game/DataStores/DBCEnums.h | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/src/server/game/DataStores/DBCEnums.h b/src/server/game/DataStores/DBCEnums.h index 5afc37f2a38..d782e687248 100644 --- a/src/server/game/DataStores/DBCEnums.h +++ b/src/server/game/DataStores/DBCEnums.h @@ -2290,14 +2290,17 @@ DEFINE_ENUM_FLAG(SummonPropertiesFlags); enum class TaxiNodeFlags : int32 { - ShowOnAllianceMap = 0x00000001, - ShowOnHordeMap = 0x00000002, - ShowOnMapBorder = 0x00000004, - ShowIfClientPassesCondition = 0x00000008, - UsePlayerFavoriteMount = 0x00000010, - EndPointPnly = 0x00000020, - IgnoreForFindNearest = 0x00000040, - DoNotShowInWorldMapUI = 0x00000080, + ShowOnAllianceMap = 0x00000001, + ShowOnHordeMap = 0x00000002, + ShowOnMapBorder = 0x00000004, + ShowIfClientPassesCondition = 0x00000008, + UsePlayerFavoriteMount = 0x00000010, + EndPointOnly = 0x00000020, + IgnoreForFindNearest = 0x00000040, + DoNotShowInWorldMapUI = 0x00000080, + ShowNpcMinimapAtlasIfClientPassesCondition = 0x00000100, + MapLayerTransition = 0x00000200, + NotAccountWide = 0x00000400 }; DEFINE_ENUM_FLAG(TaxiNodeFlags); |