From c546bfc1cacd1e0a0460dd9fa499539f467d1a19 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Mon, 20 Dec 2021 17:32:11 +0100 Subject: [PATCH] - reinstated bug in pushmove not to check the first wall when scanning backwards. Seems we need this in a few places. --- source/build/src/clip.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/build/src/clip.cpp b/source/build/src/clip.cpp index 04ca6be7b..bafa4159b 100644 --- a/source/build/src/clip.cpp +++ b/source/build/src/clip.cpp @@ -924,7 +924,7 @@ int pushmove_(vec3_t *const vect, int *const sectnum, bad = -1; k--; if (k <= 0) return bad; clipupdatesector(vect->vec2, sectnum, walldist); - if (enginecompatibility_mode == ENGINECOMPATIBILITY_NONE && *sectnum < 0) return -1; + if (*sectnum < 0) return -1; } else if (!clipsectormap[wal->nextsector]) addclipsect(wal->nextsector);