mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-02-05 16:39:08 +01:00
Fix typo in previous commit that broke Dungeon Finder
--HG-- branch : trunk
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user