diff options
author | Spp <none@none> | 2010-09-05 23:20:55 +0200 |
---|---|---|
committer | Spp <none@none> | 2010-09-05 23:20:55 +0200 |
commit | 4c393dc36b7f9b5fc654765a84da20c1fa89beb7 (patch) | |
tree | 59605299e2657112bc22ebcf0aedee9ed23707b1 | |
parent | 26e3c5eb20450b30d22c3305a7e71a4c0d9e9d98 (diff) |
Fix typo in previous commit
--HG--
branch : trunk
-rw-r--r-- | src/server/game/DungeonFinding/LFGMgr.cpp | 4 |
1 files 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) /// <param name="bool">compatibles or not</param> 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; } |