small fix

This commit is contained in:
MihailRis 2024-01-13 21:33:36 +03:00
parent 9fd675895d
commit 6d60cc8276

View File

@ -176,7 +176,6 @@ void PhysicsSolver::colisionCalc(
if (glm::abs(newy-pos.y) <= MAX_FIX+stepHeight) { if (glm::abs(newy-pos.y) <= MAX_FIX+stepHeight) {
pos.y = newy; pos.y = newy;
} }
hitbox->grounded = true;
break; break;
} }
} }