diff options
author | Shauren <shauren.trinity@gmail.com> | 2025-01-06 21:54:48 +0100 |
---|---|---|
committer | Ovahlord <dreadkiller@gmx.de> | 2025-01-09 20:53:18 +0100 |
commit | 9921cbffe9fb5d5e6e76c9d63c1ed38d81b3a503 (patch) | |
tree | 044bb8f289bf6bdf644233584c6de4cf5bb38241 /src | |
parent | b44bbb3072cb9ea83c560efe463132bfe39af982 (diff) |
Core/DataStores: Define new taxi node flags
(cherry picked from commit edbbbf8be3569eb2c2c44617b0ff1ba878d812a9)
Diffstat (limited to 'src')
-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 dbf1e05e4dd..d7ce4d30f4e 100644 --- a/src/server/game/DataStores/DBCEnums.h +++ b/src/server/game/DataStores/DBCEnums.h @@ -2064,14 +2064,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); |