Skip to content

Commit

Permalink
Patch 11.07.23
Browse files Browse the repository at this point in the history
  • Loading branch information
MrRedShark77 committed Jul 11, 2023
1 parent eb8de5e commit a1ae1d2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion js/challenges.js
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ const CHALS = {
let rank = c?E(0):x.softcap(20,4,1).floor()
let tick = c?E(1):E(0.96).pow(x.root(2))
let scrank = x.add(1).log10().div(10).add(1).root(3)
let over = Decimal.pow(0.99,x.add(1).log10().root(2))
let over = Decimal.pow(0.99,x.add(1).log10().root(2)).max(.5)
return {rank: rank, tick: tick, scrank, over}
},
effDesc(x) { return hasBeyondRank(2,20)?formatMult(x.scrank)+" later to Supercritical Rank & All Fermions starting, "+formatReduction(x.over)+" weaker to Super Overpower scaling":"+"+format(x.rank,0)+" later to Super Rank starting, "+format(E(1).sub(x.tick).mul(100))+"% weaker to Super Tickspeed scaling" },
Expand Down
2 changes: 1 addition & 1 deletion js/saves.js
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ function convertStringToDecimal() {
for (let x in BOSONS.upgs.ids) for (let y in BOSONS.upgs[BOSONS.upgs.ids[x]]) player.supernova.b_upgs[BOSONS.upgs.ids[x]][y] = E(player.supernova.b_upgs[BOSONS.upgs.ids[x]][y]||0)
}

function cannotSave() { return tmp.supernova.reached && player.supernova.times.lt(1) && !quUnl() || tmp.inf_reached }
function cannotSave() { return tmp.supernova.reached && player.supernova.times.lt(1) && !quUnl() || tmp.inf_reached && !hasInfUpgrade(16) }

function save(){
let str = btoa(JSON.stringify(player))
Expand Down

0 comments on commit a1ae1d2

Please sign in to comment.