Skip to content

Commit

Permalink
Core/DataStores: Define new taxi node flags
Browse files Browse the repository at this point in the history
  • Loading branch information
Shauren committed Jan 6, 2025
1 parent b18d0b8 commit edbbbf8
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions src/server/game/DataStores/DBCEnums.h
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit edbbbf8

Please sign in to comment.