mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 19:19:56 +00:00
Fix faction reputation case sensitivity issue (Fixes #2360)
This commit is contained in:
parent
ad8790fba0
commit
b542143e3a
1 changed files with 15 additions and 15 deletions
|
@ -125,6 +125,21 @@ bool MWMechanics::NpcStats::isInFaction (const std::string& faction) const
|
|||
return (mFactionRank.find(Misc::StringUtils::lowerCase(faction)) != mFactionRank.end());
|
||||
}
|
||||
|
||||
int MWMechanics::NpcStats::getFactionReputation (const std::string& faction) const
|
||||
{
|
||||
std::map<std::string, int>::const_iterator iter = mFactionReputation.find (Misc::StringUtils::lowerCase(faction));
|
||||
|
||||
if (iter==mFactionReputation.end())
|
||||
return 0;
|
||||
|
||||
return iter->second;
|
||||
}
|
||||
|
||||
void MWMechanics::NpcStats::setFactionReputation (const std::string& faction, int value)
|
||||
{
|
||||
mFactionReputation[Misc::StringUtils::lowerCase(faction)] = value;
|
||||
}
|
||||
|
||||
float MWMechanics::NpcStats::getSkillGain (int skillIndex, const ESM::Class& class_, int usageType,
|
||||
int level, float extraFactor) const
|
||||
{
|
||||
|
@ -329,21 +344,6 @@ void MWMechanics::NpcStats::setBounty (int bounty)
|
|||
mBounty = bounty;
|
||||
}
|
||||
|
||||
int MWMechanics::NpcStats::getFactionReputation (const std::string& faction) const
|
||||
{
|
||||
std::map<std::string, int>::const_iterator iter = mFactionReputation.find (faction);
|
||||
|
||||
if (iter==mFactionReputation.end())
|
||||
return 0;
|
||||
|
||||
return iter->second;
|
||||
}
|
||||
|
||||
void MWMechanics::NpcStats::setFactionReputation (const std::string& faction, int value)
|
||||
{
|
||||
mFactionReputation[faction] = value;
|
||||
}
|
||||
|
||||
int MWMechanics::NpcStats::getReputation() const
|
||||
{
|
||||
return mReputation;
|
||||
|
|
Loading…
Reference in a new issue