Skip to content

Commit cd8132e

Browse files
committed
nerf charged leap
1 parent 9f505d3 commit cd8132e

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

changelog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
- Lowered *Player Health* option Silly Tier to **Low**
44
- Lowered *Earthquake* option Silly Tier to **Low**
55
- Lowered *Confetti Explosions* option Silly Tier to **Low**
6+
- Re-balanced maximum leap power for *Charged Leap* option
7+
- Decreased speed multiplier by `20%`
8+
- Decreased jump power by `18.75%`
69
- Floating menu button now resizes properly when changing graphics quality
710
- Fix sizing issues with thumbnails on *Level Ads* for lower graphics qualities
811
- Fix ad on *Level Ads* being stuck loading if already playing the advertised level

src/hooks/mechanics/Leap.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,8 @@ class $modify(LeapGJBaseGameLayer, GJBaseGameLayer) {
8383

8484
auto pct = f->charge / 100.f;
8585

86-
auto newSpeed = (f->speed * 3.75f) * pct;
87-
auto boostHeight = 20.f * pct;
86+
auto newSpeed = (f->speed * 3.f) * pct;
87+
auto boostHeight = 16.25f * pct;
8888

8989
m_player1->m_playerSpeed = newSpeed;
9090
m_player2->m_playerSpeed = newSpeed;

0 commit comments

Comments
 (0)