mirror of
https://github.com/marcrobledo/savegame-editors.git
synced 2025-04-28 09:05:10 +00:00
Merge pull request #417 from phil-macrocheira/master
[TOTK] Fix exp calc incorrect skill points ceiling
This commit is contained in:
commit
8611200732
@ -79,7 +79,7 @@ const ExperienceCalculator={
|
||||
|
||||
var PointSum = DefeatPoints + DefeatedNoDamagePoints + HeadshotPoints + GuardJustPoints + JustAvoidPoints;
|
||||
|
||||
totalExperience += Math.min(2*MaxNum*Points, PointSum);
|
||||
totalExperience += Math.min(2*DefeatPoints, PointSum);
|
||||
}
|
||||
return totalExperience;
|
||||
},
|
||||
|
Loading…
x
Reference in New Issue
Block a user