Skip to content

Commit

Permalink
Patch 03.07.23
Browse files Browse the repository at this point in the history
  • Loading branch information
MrRedShark77 committed Jul 3, 2023
1 parent 295954c commit e7a24e8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion js/elemental.js
Original file line number Diff line number Diff line change
Expand Up @@ -628,7 +628,7 @@ const ELEMENTS = {
let s = player.supernova.times.overflow(1e8,0.5)
if (!player.qu.rip.active) s = s.root(1.5)
let x = E(1.1).pow(s)
return x.softcap(player.qu.rip.active?'1e130':'1e308',0.01,0)
return x.softcap(player.qu.rip.active?'1e130':'1e308',0.01,0).min('e2e4')
},
effDesc(x) { return "x"+x.format() },
},
Expand Down
2 changes: 1 addition & 1 deletion js/upgrades.js
Original file line number Diff line number Diff line change
Expand Up @@ -874,7 +874,7 @@ const UPGS = {
cost: E(1e17),
effect() {
let x = (tmp.prestiges.base||E(1)).add(1).log10().tetrate(1.5).add(1)
return x
return x.min('e2.5e4')
},
effDesc(x=this.effect()) { return "x"+format(x) },
},
Expand Down

0 comments on commit e7a24e8

Please sign in to comment.