From d1deb8bd434ecdefcb02e267aa875b61fa47a997 Mon Sep 17 00:00:00 2001 From: Tim Angus Date: Fri, 29 Dec 2006 21:23:10 +0000 Subject: * (bug 2935) Creep penetrating surfaces it shouldn't --- src/cgame/cg_buildable.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cgame/cg_buildable.c b/src/cgame/cg_buildable.c index c1cac345..0bf6889c 100644 --- a/src/cgame/cg_buildable.c +++ b/src/cgame/cg_buildable.c @@ -134,7 +134,7 @@ static void CG_Creep( centity_t *cent ) VectorScale( temp, -4096, temp ); VectorAdd( temp, cent->lerpOrigin, temp ); - CG_Trace( &tr, cent->lerpOrigin, NULL, NULL, temp, cent->currentState.number, MASK_SOLID ); + CG_Trace( &tr, cent->lerpOrigin, NULL, NULL, temp, cent->currentState.number, MASK_PLAYERSOLID ); VectorCopy( tr.endpos, origin ); -- cgit