aboutsummaryrefslogtreecommitdiffstats
path: root/src/player.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/player.cpp')
-rw-r--r--src/player.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/player.cpp b/src/player.cpp
index bdfc9fc..62ff6fe 100644
--- a/src/player.cpp
+++ b/src/player.cpp
@@ -86,6 +86,7 @@ void PlayerSystem::receive(const KeyDownEvent &kde)
if ((kc == SDLK_SPACE) && game::canJump && ((vel.y > -0.01) & (vel.y < 0.01))) {
loc.y += HLINES(2);
vel.y = .4;
+ vel.grounded = false;
} else if (!ui::dialogBoxExists || ui::dialogPassive) {
if (kc == getControl(0)) {
if (!ui::fadeIntensity)