diff options
Diffstat (limited to 'src/game/LFGHandler.cpp')
-rw-r--r-- | src/game/LFGHandler.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/LFGHandler.cpp b/src/game/LFGHandler.cpp index 63fc3ad2439..6fa0199d6ff 100644 --- a/src/game/LFGHandler.cpp +++ b/src/game/LFGHandler.cpp @@ -32,7 +32,7 @@ static void AttemptJoin(Player* _player) if(!_player->m_lookingForGroup.canAutoJoin() || _player->GetGroup()) return; - //TODO: Guard Player Map + ObjectAccessor::Guard guard(*HashMapHolder<Player>::GetLock()); HashMapHolder<Player>::MapType const& players = ObjectAccessor::Instance().GetPlayers(); for (HashMapHolder<Player>::MapType::const_iterator iter = players.begin(); iter != players.end(); ++iter) { @@ -92,7 +92,7 @@ static void AttemptAddMore(Player* _player) if(!_player->m_lookingForGroup.more.canAutoJoin()) return; - //TODO: Guard Player map + ObjectAccessor::Guard guard(*HashMapHolder<Player>::GetLock()); HashMapHolder<Player>::MapType const& players = ObjectAccessor::Instance().GetPlayers(); for (HashMapHolder<Player>::MapType::const_iterator iter = players.begin(); iter != players.end(); ++iter) { |