diff options
author | Roman Tetelman <kevlarman@gmail.com> | 2009-10-03 12:05:25 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-03 00:15:40 +0000 |
commit | ae0a3343c5e6ce341896e0c0204dc385bc682e6f (patch) | |
tree | 7d83f0a9a67e3dae46e761a02757034b65ba6516 /src | |
parent | 3bab258f94500c48a46c14e68ff81005483e6ebf (diff) |
* mark location entities SVF_BROADCAST
Diffstat (limited to 'src')
-rw-r--r-- | src/game/g_target.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/game/g_target.c b/src/game/g_target.c index 9e110162..6dacfdf2 100644 --- a/src/game/g_target.c +++ b/src/game/g_target.c @@ -324,6 +324,7 @@ void SP_target_location( gentity_t *self ) self->think = target_location_linkup; self->nextthink = level.time + 200; // Let them all spawn first self->s.eType = ET_LOCATION; + self->r.svFlags = SVF_BROADCAST; trap_LinkEntity( self ); // make the server send them to the clients G_SetOrigin( self, self->s.origin ); } |