[10392] Small correction in SetReputation to avoid confusion

Signed-off-by: NoFantasy <nofantasy@nf.no>
This commit is contained in:
NoFantasy 2010-08-21 10:26:38 +02:00
parent 9d76725a0e
commit 6756fff93a
2 changed files with 4 additions and 4 deletions

View file

@ -249,9 +249,9 @@ bool ReputationMgr::SetReputation(FactionEntry const* factionEntry, int32 standi
if (res)
{
FactionStateList::iterator itr = m_factions.find(factionEntry->reputationListID);
if (itr != m_factions.end())
SendState(&itr->second);
FactionStateList::iterator itrstate = m_factions.find(factionEntry->reputationListID);
if (itrstate != m_factions.end())
SendState(&itrstate->second);
}
}
}

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "10391"
#define REVISION_NR "10392"
#endif // __REVISION_NR_H__