fix comulative typo in replicanti.js

This commit is contained in:
WaitingIdly 2021-07-27 08:09:30 -07:00
parent ccef212d33
commit f3b36d8409

View File

@ -363,7 +363,7 @@ const ReplicantiUpgrade = {
const bulk = bulkBuyBinarySearch(Currency.infinityPoints.value, { const bulk = bulkBuyBinarySearch(Currency.infinityPoints.value, {
costFunction: x => this.baseCostAfterCount(x).dividedByEffectOf(TimeStudy(233)), costFunction: x => this.baseCostAfterCount(x).dividedByEffectOf(TimeStudy(233)),
firstCost: this.cost, firstCost: this.cost,
comulative: true, cumulative: true,
}, this.value); }, this.value);
if (!bulk) return; if (!bulk) return;
this.value += bulk.quantity; this.value += bulk.quantity;