Fix typo in previous commit that broke Dungeon Finder

--HG--
branch : trunk
This commit is contained in:
Spp
2010-08-13 08:54:01 +02:00
parent 663bd9404a
commit 4558ac1d2a

View File

@@ -1194,7 +1194,7 @@ void LFGMgr::SendUpdateProposal(Player *plr, uint32 proposalId, LfgProposal *pPr
uint32 pLogGuid = plr->GetGUIDLow();
LfgProposalPlayerMap::const_iterator itPlayer = pProp->players.find(pLogGuid);
if (itPlayer != pProp->players.end()) // Player MUST be in the proposal
if (itPlayer == pProp->players.end()) // Player MUST be in the proposal
return;
LfgProposalPlayer *ppPlayer = itPlayer->second;