1
mirror of https://github.com/thepeacockproject/Peacock synced 2025-03-01 14:43:02 +01:00

Fixed issue where LevelInfo was not properly set for normal contracts

This commit is contained in:
Lennard Fonteijn 2023-03-19 20:20:31 +01:00 committed by Reece Dunham
parent 84fbce175b
commit 168aee05fe

@ -706,7 +706,7 @@ export async function missionEnd(
if (masteryData) {
maxLevel = masteryData.MaxLevel || DEFAULT_MASTERY_MAXLEVEL
Array.from({ length: maxLevel }, (_, i) => {
locationLevelInfo = Array.from({ length: maxLevel }, (_, i) => {
return xpRequiredForLevel(i + 1)
})
}