diff --git a/src/r_segs.c b/src/r_segs.c index 5bf9b5c82..52c19d96e 100644 --- a/src/r_segs.c +++ b/src/r_segs.c @@ -2141,6 +2141,9 @@ void R_StoreWallRange(INT32 start, INT32 stop) for (r2 = frontsector->ffloors; r2; r2 = r2->next) { + if (r2->master == rover->master) // Skip if same control line. + continue; + if (!(r2->flags & FF_EXISTS) || !(r2->flags & FF_RENDERSIDES)) continue;