mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-02-02 02:45:32 +00:00
>= instead of ==
This commit is contained in:
parent
0dc242c603
commit
cf358fa79d
1 changed files with 1 additions and 1 deletions
|
@ -157,7 +157,7 @@ void MWMechanics::NpcStats::increaseSkill(int skillIndex, const ESM::Class &clas
|
||||||
|
|
||||||
int level = static_cast<int> (base);
|
int level = static_cast<int> (base);
|
||||||
|
|
||||||
if (level == 100)
|
if (level >= 100)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (preserveProgress)
|
if (preserveProgress)
|
||||||
|
|
Loading…
Reference in a new issue