mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-23 17:53:00 +02:00
fix something about covenant sleeve purchases
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user