diff options
Diffstat (limited to 'src/game/DBCStructure.h')
-rw-r--r-- | src/game/DBCStructure.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/DBCStructure.h b/src/game/DBCStructure.h index bfcf3647c57..686c43fc355 100644 --- a/src/game/DBCStructure.h +++ b/src/game/DBCStructure.h @@ -1129,8 +1129,8 @@ struct MapEntry // Helpers uint32 Expansion() const { return addon; } - bool IsDungeon() const { return map_type == MAP_INSTANCE || map_type == MAP_RAID; } + bool IsNonRaidDungeon() const { return map_type == MAP_INSTANCE; } bool Instanceable() const { return map_type == MAP_INSTANCE || map_type == MAP_RAID || map_type == MAP_BATTLEGROUND || map_type == MAP_ARENA; } bool IsRaid() const { return map_type == MAP_RAID; } bool IsBattleGround() const { return map_type == MAP_BATTLEGROUND; } |