Fixed NMI aug having effect before installing

This commit is contained in:
Mughur
2022-09-14 20:54:03 +03:00
5 changed files with 6 additions and 6 deletions
@@ -1462,7 +1462,7 @@ export function sourceFileLvl(this: IPlayer, n: number): number {
export function focusPenalty(this: IPlayer): number {
let focus = 1;
if (!this.hasAugmentation(AugmentationNames["NeuroreceptorManager"])) {
if (!this.hasAugmentation(AugmentationNames.NeuroreceptorManager, true)) {
focus = this.focus ? 1 : CONSTANTS.BaseFocusBonus;
}
return focus;