diff options
author | heavydemon21 <48092678+heavydemon21@users.noreply.github.com> | 2025-01-10 19:35:08 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-10 19:35:08 +0100 |
commit | b9d00961a8894356c7cff7597de424a12d2841a6 (patch) | |
tree | aa033307a742df0c22131482858749bcf480ba38 /game/player/PlayerScript.cpp | |
parent | 20f6f8ddf013e5d18770bd0a01474a845843bdd7 (diff) | |
parent | f3413f3d0fbffee0cc363096cd873a8be766ad64 (diff) |
Merge pull request #123 from lonkaars/wouter/game-improvements
some extra features
Diffstat (limited to 'game/player/PlayerScript.cpp')
-rw-r--r-- | game/player/PlayerScript.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/game/player/PlayerScript.cpp b/game/player/PlayerScript.cpp index 286cdaf..8cbe8dc 100644 --- a/game/player/PlayerScript.cpp +++ b/game/player/PlayerScript.cpp @@ -163,7 +163,7 @@ void PlayerScript::fixed_update(crepe::duration_t dt) { if (current_jetpack_sound > 7) { current_jetpack_sound = 0; } - } else if (transform.position.y == 195) { + } else if (transform.position.y == 200) { Rigidbody & rb = this->body; if (prev_anim != 0 && rb.data.linear_velocity.x != 0) { for (Animator & anim : animators) { |