From 29b7f76f254b1588a4630ac0622d5b128b7f3e44 Mon Sep 17 00:00:00 2001 From: Jacorb90 <39597610+Jacorb90@users.noreply.github.com> Date: Wed, 9 Sep 2020 14:08:53 -0400 Subject: [PATCH] v1.0 Beta 2 Patch 1 Inflation has been fixed --- js/game.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/js/game.js b/js/game.js index 194b418..e72293a 100644 --- a/js/game.js +++ b/js/game.js @@ -1396,7 +1396,11 @@ const LAYER_UPGS = { desc: "Spells are stronger based on your Total Super-Prestige Points.", cost: new Decimal(30), unl: function() { return player.sp.upgrades.includes(13)||player.sp.upgrades.includes(22) }, - currently: function() { return player.sp.total.plus(1).log10().div(5).plus(1) }, + currently: function() { + let sp = player.sp.total + if (sp.gte(250)) sp = sp.log10().times(250/Math.log10(250)).min(sp) + return sp.plus(1).log10().div(5).plus(1) + }, effDisp: function(x) { return format(x.sub(1).times(100))+"% stronger" }, }, 24: {