From 0e8d6857fe4751b6817b782bb1adb0f4c1cf7582 Mon Sep 17 00:00:00 2001 From: Russell Stringer Date: Fri, 14 Oct 2022 13:55:14 -0400 Subject: [PATCH] don't give 2x mult if divine=false and avgCorr>=14 --- src/Calculate.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Calculate.ts b/src/Calculate.ts index d08eba975..3064b741a 100644 --- a/src/Calculate.ts +++ b/src/Calculate.ts @@ -1402,7 +1402,7 @@ export const getOcteractValueMultipliers = () => { 1 + player.shopUpgrades.seasonPassLost / 1000, // cube upgrade 70, ie Cx20 1 + +(corruptionLevelSum >= 14 * 8) * player.cubeUpgrades[70] / 10000, - 1 + +(corruptionLevelSum >= 14 * 8) * (player.singularityUpgrades.divinePack.level === 1 ? 6.77 : 1.00), + 1 + +(corruptionLevelSum >= 14 * 8) * (player.singularityUpgrades.divinePack.getEffect().bonus ? 6.77 : 0), // next three are flame/blaze/inferno +player.singularityUpgrades.singCubes1.getEffect().bonus, +player.singularityUpgrades.singCubes2.getEffect().bonus,