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
@@ -30,7 +30,7 @@ export function CovenantPurchasesRoot(props: IProps): React.ReactElement {
* Get the cost to purchase a new Duplicate Sleeve
*/
function purchaseCost(): number {
return (player.sleevesFromCovenant + 1) * BaseCostPerSleeve;
return Math.pow(10, player.sleevesFromCovenant) * BaseCostPerSleeve;
}
/**