diff --git a/source/game/entities/player.cpp b/source/game/entities/player.cpp index 81170ca..fceb5b8 100644 --- a/source/game/entities/player.cpp +++ b/source/game/entities/player.cpp @@ -370,7 +370,7 @@ void Player::moveVertical(float delta_time) { } else { y_ += displacement; #ifdef _DEBUG - if (y_ > PlayArea::BOTTOM + HEIGHT) { y_ = PlayArea::TOP + 2; } + if (y_ > PlayArea::BOTTOM + 100) { y_ = PlayArea::TOP + 2; } #endif } }