forked from mirror/openmw-tes3mp
Fix underflow for NPCs with level 0
This commit is contained in:
parent
a1639371d3
commit
fd3f109362
1 changed files with 1 additions and 1 deletions
|
@ -230,7 +230,7 @@ namespace
|
|||
+ 5
|
||||
+ raceBonus
|
||||
+ specBonus
|
||||
+ (level-1) * (majorMultiplier + specMultiplier)), 100));
|
||||
+(int(level)-1) * (majorMultiplier + specMultiplier)), 100)); // Must gracefully handle level 0
|
||||
}
|
||||
|
||||
int skills[ESM::Skill::Length];
|
||||
|
|
Loading…
Reference in a new issue