From 22bdb94c4499f3f255bc63c59314becc488f8b22 Mon Sep 17 00:00:00 2001 From: Sergio Date: Tue, 7 Apr 2026 13:04:58 +0200 Subject: [PATCH] eliminada una safety merda de debug que estava tornantme loco --- source/game/entities/player.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 } }