1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-02-01 23:45:31 +00:00

>= instead of ==

This commit is contained in:
scrawl 2012-09-15 19:20:13 +02:00
parent 0dc242c603
commit cf358fa79d

View file

@ -157,7 +157,7 @@ void MWMechanics::NpcStats::increaseSkill(int skillIndex, const ESM::Class &clas
int level = static_cast<int> (base);
if (level == 100)
if (level >= 100)
return;
if (preserveProgress)