Skip to content
This repository was archived by the owner on Sep 4, 2025. It is now read-only.

Commit 7d85982

Browse files
committed
nav: skip surface using textures/common/outside material (even if it has playerclip surfaceparm)
1 parent 80b4076 commit 7d85982

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

tools/quake3/q3map2/nav.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -269,6 +269,10 @@ static void LoadBrushTris( std::vector<float> &verts, std::vector<int> &tris ) {
269269
continue;
270270
}
271271

272+
if ( !Q_stricmp( shader->shader, "textures/common/outside" ) ) {
273+
continue;
274+
}
275+
272276
if ( excludeCaulk && !Q_stricmp( shader->shader, "textures/common/caulk" ) ) {
273277
continue;
274278
}

0 commit comments

Comments
 (0)