diff options
| author | Teleqraph <nyrdeveloper@gmail.com> | 2023-10-22 11:24:48 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-10-22 11:24:48 +0200 |
| commit | 9eceff2bc243946998c006418229dbb639e898d6 (patch) | |
| tree | f800e44d9d2d7bb7caf388cb690194ed3bfac3e2 /src/server/game/Maps/Map.h | |
| parent | 3d3979f1cabf59321fbafcde1f0d1e600d29e974 (diff) | |
Core/Map: Implement several difficulty getters (#29370)
Co-authored-by: ModoX <moardox@gmail.com>
Diffstat (limited to 'src/server/game/Maps/Map.h')
| -rw-r--r-- | src/server/game/Maps/Map.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/server/game/Maps/Map.h b/src/server/game/Maps/Map.h index f41716ea4d3..6cd97bb5d4b 100644 --- a/src/server/game/Maps/Map.h +++ b/src/server/game/Maps/Map.h @@ -325,8 +325,14 @@ class TC_GAME_API Map : public GridRefManager<NGridType> bool IsDungeon() const; bool IsNonRaidDungeon() const; bool IsRaid() const; + bool IsLFR() const; + bool IsNormal() const; bool IsHeroic() const; + bool IsMythic() const; + bool IsMythicPlus() const; + bool IsHeroicOrHigher() const; bool Is25ManRaid() const; + bool IsTimewalking() const; bool IsBattleground() const; bool IsBattleArena() const; bool IsBattlegroundOrArena() const; |
