Merge pull request #4104 from Mughur/dev

MISC: multiple hasAugmentation checks didn't check if the augment was installed
This commit is contained in:
hydroflame
2022-09-23 00:32:16 -03:00
committed by GitHub
8 changed files with 18 additions and 15 deletions
+1 -1
View File
@@ -142,7 +142,7 @@ export function NetscriptStanek(): InternalAPI<IStanek> {
//Return true iff the player is in CotMG and has the first Stanek aug installed
return (
Factions[FactionNames.ChurchOfTheMachineGod].isMember &&
player.hasAugmentation(AugmentationNames.StaneksGift1)
player.hasAugmentation(AugmentationNames.StaneksGift1, true)
);
},
};