From 6d60cc82760f985c575c6625a25cfaa4fc2dd7cb Mon Sep 17 00:00:00 2001 From: MihailRis Date: Sat, 13 Jan 2024 21:33:36 +0300 Subject: [PATCH] small fix --- src/physics/PhysicsSolver.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/physics/PhysicsSolver.cpp b/src/physics/PhysicsSolver.cpp index e5a588c9..834d5389 100644 --- a/src/physics/PhysicsSolver.cpp +++ b/src/physics/PhysicsSolver.cpp @@ -176,7 +176,6 @@ void PhysicsSolver::colisionCalc( if (glm::abs(newy-pos.y) <= MAX_FIX+stepHeight) { pos.y = newy; } - hitbox->grounded = true; break; } }