mirror of
https://github.com/OpenMW/openmw.git
synced 2025-06-24 07:11:34 +00:00
Fix mod not increasing fortified values
This commit is contained in:
parent
dc495a685a
commit
6b203892fc
2 changed files with 3 additions and 3 deletions
|
@ -219,7 +219,7 @@ namespace MWScript
|
||||||
.getDynamic (mIndex));
|
.getDynamic (mIndex));
|
||||||
|
|
||||||
stat.setBase(value);
|
stat.setBase(value);
|
||||||
stat.setCurrent(value, true);
|
stat.setCurrent(stat.getModified(false), true, true);
|
||||||
|
|
||||||
ptr.getClass().getCreatureStats (ptr).setDynamic (mIndex, stat);
|
ptr.getClass().getCreatureStats (ptr).setDynamic (mIndex, stat);
|
||||||
}
|
}
|
||||||
|
@ -268,7 +268,7 @@ namespace MWScript
|
||||||
if(mIndex != 2)
|
if(mIndex != 2)
|
||||||
base = std::max(base, 0.f);
|
base = std::max(base, 0.f);
|
||||||
stat.setBase(base);
|
stat.setBase(base);
|
||||||
stat.setCurrent(diff + current, true);
|
stat.setCurrent(diff + current, true, true);
|
||||||
|
|
||||||
stats.setDynamic (mIndex, stat);
|
stats.setDynamic (mIndex, stat);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue