align aug mults in bladeburner, faction augmentation now display required rep in 0.000a

This commit is contained in:
Olivier Gagnon
2021-03-17 13:40:31 -04:00
parent 4c30f107e3
commit bf4d841f88
2 changed files with 13 additions and 17 deletions
+1 -1
View File
@@ -119,7 +119,7 @@ export class PurchaseableAugmentation extends React.Component<IProps, any> {
statusTxt = `UNLOCKED - ${numeralWrapper.formatMoney(moneyCost)}`;
} else {
disabled = true;
statusTxt = `LOCKED (Requires ${numeralWrapper.format(repCost, "0,0.0")} faction reputation - ${numeralWrapper.formatMoney(moneyCost)})`;
statusTxt = `LOCKED (Requires ${numeralWrapper.format(repCost, "0.000a")} faction reputation - ${numeralWrapper.formatMoney(moneyCost)})`;
color = "red";
}