Merge pull request #3673 from nickofolas/fix/stanek-entropy

STANEK: Properly reapply entropy in Stanek's Gift
This commit is contained in:
hydroflame 2022-05-19 01:18:03 -04:00 committed by GitHub
commit 6aac4de458
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -136,8 +136,9 @@ export class StaneksGift implements IStaneksGift {
}
updateMults(p: IPlayer): void {
p.reapplyAllAugmentations(true);
p.reapplyAllSourceFiles();
// applyEntropy also reapplies all augmentations and source files
// This wraps up the reset nicely
p.applyEntropy(p.entropy);
for (const aFrag of this.fragments) {
const fragment = aFrag.fragment();