From 37cde78802ceb6ef9a194ec88e1cf5cdf2349f04 Mon Sep 17 00:00:00 2001 From: IvarK Date: Fri, 9 Aug 2019 23:35:30 +0300 Subject: [PATCH] fix glyph sacrifice --- javascripts/core/celestials/teresa.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/javascripts/core/celestials/teresa.js b/javascripts/core/celestials/teresa.js index 68bf0b943..b69aa5716 100644 --- a/javascripts/core/celestials/teresa.js +++ b/javascripts/core/celestials/teresa.js @@ -101,7 +101,7 @@ const Teresa = { return true; }, rewardMultiplier(antimatter) { - return Decimal.max(Decimal.pow(antimatter.log10() / 1.5e8, 12), 1).toNumber(); + return Decimal.max(Decimal.pow(antimatter.plus(1).log10() / 1.5e8, 12), 1).toNumber(); }, perkShopCap(upgrade) { switch (upgrade.id) {