This commit is contained in:
phyzical 2022-04-15 11:17:49 +08:00
parent ec8437cadd
commit 1478e7a5b1

@ -79,7 +79,7 @@ export function AugmentationsPage(props: IProps): React.ReactElement {
const augs = getAugs();
function canBuy(augName: string): boolean {
const aug = StaticAugmentations[augName];
const augCosts = aug.getCost(player)
const augCosts = aug.getCost(player);
const repCost = augCosts.repCost;
const hasReq = props.faction.playerReputation >= repCost;
const hasRep = hasAugmentationPrereqs(aug);