Core/Dungeon Finder: Fix typo, debug msg was supposed to be logged to debug (not error)

--HG--
branch : trunk
This commit is contained in:
Spp
2010-12-17 13:45:41 +01:00
parent 82f45966fc
commit fa6f2ee9d9

View File

@@ -90,7 +90,7 @@ void LFGScripts::OnRemoveMember(Group* group, uint64 guid, RemoveMethod& method,
else if (group->isLfgKickActive())
// Update internal kick cooldown of kicked
*/
LfgUpdateData updateData = LfgUpdateData(LFG_UPDATETYPE_LEADER);
plr->GetSession()->SendLfgUpdateParty(updateData);
if (plr->GetMap()->IsDungeon()) // Teleport player out the dungeon
@@ -104,7 +104,7 @@ void LFGScripts::OnRemoveMember(Group* group, uint64 guid, RemoveMethod& method,
void LFGScripts::OnDisband(Group* group)
{
uint64 gguid = group->GetGUID();
sLog.outError("LFGScripts::OnDisband [" UI64FMTD "]", gguid);
sLog.outDebug("LFGScripts::OnDisband [" UI64FMTD "]", gguid);
sLFGMgr.RemoveGroupData(gguid);
}