From 5ffefcca8071d5858443411e8e025c9f3da34757 Mon Sep 17 00:00:00 2001 From: Zelow79 <32428876+Zelow79@users.noreply.github.com> Date: Fri, 17 Mar 2023 07:57:38 -0400 Subject: [PATCH] Show on tooltip that bladeburner augs can be grafted (#427) --- src/Augmentation/ui/PurchasableAugmentations.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Augmentation/ui/PurchasableAugmentations.tsx b/src/Augmentation/ui/PurchasableAugmentations.tsx index 52bd3a773..a319c6907 100644 --- a/src/Augmentation/ui/PurchasableAugmentations.tsx +++ b/src/Augmentation/ui/PurchasableAugmentations.tsx @@ -13,6 +13,7 @@ import { Augmentation } from "../Augmentation"; import { AugmentationNames } from "../data/AugmentationNames"; import { StaticAugmentations } from "../StaticAugmentations"; import { PurchaseAugmentationModal } from "./PurchaseAugmentationModal"; +import { FactionNames } from "../../Faction/data/FactionNames"; interface IPreReqsProps { aug: Augmentation; @@ -89,7 +90,7 @@ const Exclusive = (props: IExclusiveProps): React.ReactElement => { )} {Player.canAccessGrafting() && - !props.aug.isSpecial && + (!props.aug.isSpecial || props.aug.factions.includes(FactionNames.Bladeburners)) && props.aug.name !== AugmentationNames.TheRedPill && (
  • Grafting