From fd31992b72b679a85ea321c2d6eb72aad44ae1e9 Mon Sep 17 00:00:00 2001 From: NepDisk <16447892+NepDisk@users.noreply.github.com> Date: Wed, 7 Aug 2024 14:05:36 -0400 Subject: [PATCH] Reeanble flatslope check --- src/p_slopes.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/p_slopes.c b/src/p_slopes.c index 2922a9a6e..6b4589261 100644 --- a/src/p_slopes.c +++ b/src/p_slopes.c @@ -908,11 +908,11 @@ boolean P_CanApplySlopePhysics(mobj_t *mo, pslope_t *slope) return false; } - /*if (slope->normal.x == 0 && slope->normal.y == 0) + if (slope->normal.x == 0 && slope->normal.y == 0) { // Flat slope? No such thing, man. No such thing. return false; - }*/ + } // We can do slope physics. return true;