aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNayd <dnpd.dd@gmail.com>2015-03-18 00:53:39 +0000
committerNayd <dnpd.dd@gmail.com>2015-03-18 00:53:39 +0000
commita4b5b41a9b2e12f5f12584803cd1a98c653cc01b (patch)
tree1f3697abca57a4d61bfe2402fe71320e4a76fc60 /src
parent3eaace1508e818c4f651eaaf8792cc60a766890f (diff)
Core/LFGMgr: Fix compiler error
Diffstat (limited to 'src')
-rw-r--r--src/server/game/DungeonFinding/LFGMgr.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/game/DungeonFinding/LFGMgr.cpp b/src/server/game/DungeonFinding/LFGMgr.cpp
index 19ea140d998..db711bd9a47 100644
--- a/src/server/game/DungeonFinding/LFGMgr.cpp
+++ b/src/server/game/DungeonFinding/LFGMgr.cpp
@@ -1522,7 +1522,7 @@ LfgState LFGMgr::GetOldState(ObjectGuid guid)
bool LFGMgr::IsVoteKickActive(ObjectGuid gguid)
{
- ASSERT(gguid.IsGroup());
+ ASSERT(gguid.IsParty());
bool active = GroupsStore[gguid].IsVoteKickActive();
TC_LOG_TRACE("lfg.data.group.votekick.get", "Group: %s, Active: %d", gguid.ToString().c_str(), active);
@@ -1692,7 +1692,7 @@ void LFGMgr::SetState(ObjectGuid guid, LfgState state)
void LFGMgr::SetVoteKick(ObjectGuid gguid, bool active)
{
- ASSERT(gguid.IsGroup());
+ ASSERT(gguid.IsParty());
LfgGroupData& data = GroupsStore[gguid];
TC_LOG_TRACE("lfg.data.group.votekick.set", "Group: %s, New state: %d, Previous: %d",