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;