mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-02-18 18:40:06 +00:00
Handle iWereWolfBounty
This commit is contained in:
parent
194413c955
commit
264226dfe3
@ -267,12 +267,16 @@ bool MWMechanics::NpcStats::hasBeenUsed (const std::string& id) const
|
|||||||
|
|
||||||
int MWMechanics::NpcStats::getBounty() const
|
int MWMechanics::NpcStats::getBounty() const
|
||||||
{
|
{
|
||||||
return mBounty;
|
if (mIsWerewolf)
|
||||||
|
return MWBase::Environment::get().getWorld()->getStore().get<ESM::GameSetting>().find("iWereWolfBounty")->getInt();
|
||||||
|
else
|
||||||
|
return mBounty;
|
||||||
}
|
}
|
||||||
|
|
||||||
void MWMechanics::NpcStats::setBounty (int bounty)
|
void MWMechanics::NpcStats::setBounty (int bounty)
|
||||||
{
|
{
|
||||||
mBounty = bounty;
|
if (!mIsWerewolf)
|
||||||
|
mBounty = bounty;
|
||||||
}
|
}
|
||||||
|
|
||||||
int MWMechanics::NpcStats::getFactionReputation (const std::string& faction) const
|
int MWMechanics::NpcStats::getFactionReputation (const std::string& faction) const
|
||||||
|
Loading…
x
Reference in New Issue
Block a user