STANEK: Re-apply stanek boosts when applying entropy (#816)

This commit is contained in:
Yichi Zhang
2023-10-02 17:11:22 -07:00
committed by GitHub
parent 7f82ceaf24
commit 3f0c10adf4
4 changed files with 6 additions and 6 deletions

View File

@@ -1,5 +1,6 @@
/** Augmentation-related methods for the Player class (PlayerObject) */
import { calculateEntropy } from "../Grafting/EntropyAccumulation";
import { staneksGift } from "../../CotMG/Helper";
import type { PlayerObject } from "./PlayerObject";
@@ -9,4 +10,5 @@ export function applyEntropy(this: PlayerObject, stacks = 1): void {
this.reapplyAllSourceFiles();
this.mults = calculateEntropy(stacks);
staneksGift.updateMults();
}