diff --git a/src/p_map.cpp b/src/p_map.cpp index e1e42db60..a194f2de3 100644 --- a/src/p_map.cpp +++ b/src/p_map.cpp @@ -6650,6 +6650,10 @@ void P_CreateSecNodeList(AActor *thing) void P_LinkRenderSectors(AActor* thing) { + // if this thing has RenderStyle None, don't link it anywhere. + if (thing->RenderStyle == LegacyRenderStyles[STYLE_None]) + return; + FBoundingBox box(thing->X(), thing->Y(), std::max(thing->renderradius, thing->radius)); FBlockLinesIterator it(box); line_t *ld;