summaryrefslogtreecommitdiff
path: root/src/game
diff options
context:
space:
mode:
authorTim Angus <tim@ngus.net>2002-08-22 22:53:07 +0000
committerTim Angus <tim@ngus.net>2002-08-22 22:53:07 +0000
commitd974276ea91acccd09cd46f8f2b84ed8234dd4a9 (patch)
treee8fdb6f9314f2138e37bcad6a3de838d395de213 /src/game
parentc8ab405f7c869fc7a786df6cc81065309b915806 (diff)
* Some more improvements to light flares
Diffstat (limited to 'src/game')
-rw-r--r--src/game/g_misc.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/game/g_misc.c b/src/game/g_misc.c
index 5698b845..5fcc9ed6 100644
--- a/src/game/g_misc.c
+++ b/src/game/g_misc.c
@@ -455,6 +455,9 @@ void SP_misc_light_flare( gentity_t *self )
self->s.eType = ET_LIGHTFLARE;
self->s.modelindex = G_ShaderIndex( self->targetShaderName );
VectorCopy( self->pos2, self->s.origin2 );
+
+ if( self->spawnflags & 1 )
+ self->s.eFlags |= EF_NODRAW;
trap_LinkEntity( self );
}