fix something about covenant sleeve purchases

This commit is contained in:
Olivier Gagnon
2021-11-05 21:57:41 -04:00
parent eb6f016ac1
commit 58d652da54
5 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -104,7 +104,7 @@ function MainPage({ faction, rerender, onAugmentations }: IMainProps): React.Rea
const favorToDonate = Math.floor(CONSTANTS.BaseFavorToDonate * BitNodeMultipliers.RepToDonateToFaction);
const canDonate = faction.favor >= favorToDonate;
const canPurchaseSleeves = faction.name === "The Covenant" && p.bitNodeN >= 10 && SourceFileFlags[10];
const canPurchaseSleeves = faction.name === "The Covenant" && p.bitNodeN === 10;
let canAccessGang = p.canAccessGang() && GangNames.includes(faction.name);
if (p.inGang()) {