GRAFTING: Bladeburner augs can be grafted if player is in Bladeburner faction (#321)

This commit is contained in:
Tyasuh 2023-01-14 18:24:45 -05:00 committed by GitHub
parent 41451280ab
commit 6f0b3d07b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -7,7 +7,11 @@ export const getGraftingAvailableAugs = (): string[] => {
const augs: string[] = [];
for (const [augName, aug] of Object.entries(StaticAugmentations)) {
if (aug.isSpecial) continue;
if (Player.factions.includes("Bladeburners")) {
if (aug.isSpecial && !aug.factions.includes("Bladeburners")) continue;
} else {
if (aug.isSpecial) continue;
}
augs.push(augName);
}