diff options
Diffstat (limited to 'src/game/BattleGroundIC.cpp')
-rw-r--r-- | src/game/BattleGroundIC.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/BattleGroundIC.cpp b/src/game/BattleGroundIC.cpp index 73783e3b1ab..5d503460670 100644 --- a/src/game/BattleGroundIC.cpp +++ b/src/game/BattleGroundIC.cpp @@ -76,7 +76,7 @@ void BattleGroundIC::UpdatePlayerScore(Player* Source, uint32 type, uint32 value std::map<uint64, BattleGroundScore*>::iterator itr = m_PlayerScores.find(Source->GetGUID()); - if(itr == m_PlayerScores.end()) // player not found... + if (itr == m_PlayerScores.end()) // player not found... return; BattleGround::UpdatePlayerScore(Source,type,value); |