From ed711c5d5c0b27a7e5dfa14a80fe5f7cdad15e87 Mon Sep 17 00:00:00 2001 From: nickofolas Date: Tue, 26 Apr 2022 10:52:58 -0500 Subject: [PATCH] Fix isSpecial check letting augs slip through --- src/Faction/FactionHelpers.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Faction/FactionHelpers.tsx b/src/Faction/FactionHelpers.tsx index 73a6e569a..6faa12434 100644 --- a/src/Faction/FactionHelpers.tsx +++ b/src/Faction/FactionHelpers.tsx @@ -144,7 +144,7 @@ export const getFactionAugmentationsFiltered = (player: IPlayer, faction: Factio let augs = Object.values(Augmentations); // Remove special augs - augs = augs.filter((a) => !a.isSpecial || a.name != AugmentationNames.CongruityImplant); + augs = augs.filter((a) => !a.isSpecial && a.name !== AugmentationNames.CongruityImplant); if (player.bitNodeN === 2) { // TRP is not available outside of BN2 for Gangs