1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-03-12 22:14:42 +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)