Skip to content

Commit

Permalink
don't give 2x mult if divine=false and avgCorr>=14
Browse files Browse the repository at this point in the history
  • Loading branch information
Feodoric committed Oct 14, 2022
1 parent 0e41034 commit 0e8d685
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Calculate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 0e8d685

Please sign in to comment.