File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed
src/server/game/DataStores Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -2979,6 +2979,7 @@ struct MapEntry
29792979
29802980 EnumFlag<MapFlags> GetFlags () const { return static_cast <MapFlags>(Flags[0 ]); }
29812981 EnumFlag<MapFlags2> GetFlags2 () const { return static_cast <MapFlags2>(Flags[1 ]); }
2982+ EnumFlag<MapFlags3> GetFlags3 () const { return static_cast <MapFlags3>(Flags[2 ]); }
29822983};
29832984
29842985struct MapChallengeModeEntry
Original file line number Diff line number Diff line change @@ -1638,6 +1638,13 @@ enum class MapFlags2 : uint32
16381638
16391639DEFINE_ENUM_FLAG (MapFlags2);
16401640
1641+ enum class MapFlags3 : uint32
1642+ {
1643+ IsDelve = 0x00000100 ,
1644+ };
1645+
1646+ DEFINE_ENUM_FLAG (MapFlags3);
1647+
16411648enum class MapDifficultyFlags : uint8
16421649{
16431650 LimitToPlayersFromOneRealm = 0x01 ,
You can’t perform that action at this time.
0 commit comments