fix exp not loading, kinda

This commit is contained in:
Olivier Gagnon
2022-07-19 13:09:56 -04:00
parent c977a9def7
commit b409e58447
6 changed files with 45 additions and 47 deletions

View File

@@ -32,8 +32,5 @@ export function applyEntropy(this: IPlayer, stacks = 1): void {
this.reapplyAllAugmentations();
this.reapplyAllSourceFiles();
const newMultipliers = calculateEntropy(this, stacks);
for (const [mult, val] of Object.entries(newMultipliers)) {
this.setMult(mult, val);
}
this.mults = calculateEntropy(this, stacks);
}