From 4c393dc36b7f9b5fc654765a84da20c1fa89beb7 Mon Sep 17 00:00:00 2001 From: Spp Date: Sun, 5 Sep 2010 23:20:55 +0200 Subject: [PATCH] Fix typo in previous commit --HG-- branch : trunk --- src/server/game/DungeonFinding/LFGMgr.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/server/game/DungeonFinding/LFGMgr.cpp b/src/server/game/DungeonFinding/LFGMgr.cpp index 28fe114d058..db91ec5b04a 100644 --- a/src/server/game/DungeonFinding/LFGMgr.cpp +++ b/src/server/game/DungeonFinding/LFGMgr.cpp @@ -1182,7 +1182,7 @@ void LFGMgr::RemoveFromCompatibles(uint64 guid) /// compatibles or not void LFGMgr::SetCompatibles(std::string key, bool compatibles) { - sLog.outDebug("SPP:LFGMgr::GetCompatibles: (%s): %d", key.c_str(), LfgAnswer(compatibles)); + sLog.outDebug("LFGMgr::GetCompatibles: (%s): %d", key.c_str(), LfgAnswer(compatibles)); m_CompatibleMap[key] = LfgAnswer(compatibles); } @@ -1198,7 +1198,7 @@ LfgAnswer LFGMgr::GetCompatibles(std::string key) if (it != m_CompatibleMap.end()) answer = it->second; - sLog.outDebug("SPP:LFGMgr::GetCompatibles: (%s): %d", key.c_str(), answer); + sLog.outDebug("LFGMgr::GetCompatibles: (%s): %d", key.c_str(), answer); return answer; }