BUGFIX: Stat levels are not recalculated after grafting augs or accepting Stanek's Gift (#2322)

This commit is contained in:
catloversg
2025-09-28 13:04:18 +07:00
committed by GitHub
parent dcd2f33f7c
commit 4c3c56623d

View File

@@ -48,6 +48,9 @@ export function applyAugmentation(aug: PlayerOwnedAugmentation, reapply = false)
Player.applyEntropy(Player.entropy);
}
// Recalculate skill levels after applying multipliers.
Player.updateSkillLevels();
// Special logic for NeuroFlux Governor
const ownedNfg = Player.augmentations.find((pAug) => pAug.name === AugmentationName.NeuroFluxGovernor);
if (aug.name === AugmentationName.NeuroFluxGovernor && !reapply && ownedNfg) {