aboutsummaryrefslogtreecommitdiff
path: root/src/game/Group.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/Group.h')
-rw-r--r--src/game/Group.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/Group.h b/src/game/Group.h
index 41e45a4cac6..132b5a20b5c 100644
--- a/src/game/Group.h
+++ b/src/game/Group.h
@@ -190,7 +190,7 @@ class Group
// properties accessories
bool IsFull() const { return (m_groupType == GROUPTYPE_NORMAL) ? (m_memberSlots.size() >= MAXGROUPSIZE) : (m_memberSlots.size() >= MAXRAIDSIZE); }
- bool isRaidGroup() const { return m_groupType == GROUPTYPE_RAID; }
+ bool isRaidGroup() const { return m_groupType & GROUPTYPE_RAID; }
bool isBGGroup() const { return m_bgGroup != NULL; }
bool IsCreated() const { return GetMembersCount() > 0; }
const uint64& GetLeaderGUID() const { return m_leaderGuid; }