Wrap up v2.1.0

This commit is contained in:
Olivier Gagnon
2022-09-23 15:00:20 -04:00
parent f43d232928
commit a3c92dd04d
7 changed files with 429 additions and 81 deletions
+2 -5
View File
@@ -86,11 +86,8 @@ export function findSleevePurchasableAugs(sleeve: Sleeve, p: IPlayer): Augmentat
}
// Add the stanek sleeve aug
if (
!ownedAugNames.includes(AugmentationNames.UnnamedAug1) &&
p.factions.includes(FactionNames.ChurchOfTheMachineGod)
) {
const aug = StaticAugmentations[AugmentationNames.UnnamedAug1];
if (!ownedAugNames.includes(AugmentationNames.ZOE) && p.factions.includes(FactionNames.ChurchOfTheMachineGod)) {
const aug = StaticAugmentations[AugmentationNames.ZOE];
availableAugs.push(aug);
}