hotfix buying multiple NFG from level 0 not stacking

This commit is contained in:
Olivier Gagnon 2021-06-14 20:31:24 -04:00
parent 2c7a4f4ce6
commit 8facdd2b49

@ -2173,6 +2173,7 @@ function installAugmentations() {
continue;
}
applyAugmentation(Player.queuedAugmentations[i]);
if(ownedAug.name === AugmentationNames.NeuroFluxGovernor
&& i !== nfgIndex) continue;
@ -2180,7 +2181,6 @@ function installAugmentations() {
if (ownedAug.name === AugmentationNames.NeuroFluxGovernor) {
level = ` - ${ownedAug.level}`;
}
applyAugmentation(Player.queuedAugmentations[i]);
augmentationList += (aug.name + level + "<br>");
}
Player.queuedAugmentations = [];