diff options
Diffstat (limited to 'source/mvd_parse.c')
-rw-r--r-- | source/mvd_parse.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/mvd_parse.c b/source/mvd_parse.c index 505ff6b..13ff8c1 100644 --- a/source/mvd_parse.c +++ b/source/mvd_parse.c @@ -266,7 +266,7 @@ static void MVD_ParseMulticast( mvd_t *mvd, mvd_ops_t op, int extrabits ) { } // do not send unreliables to connecting clients - if( !reliable && ( cl->state != cs_spawned || cl->download || cl->nodata ) ) { + if( !reliable && ( cl->state != cs_spawned || cl->download || ( cl->flags & CF_NODATA ) ) ) { continue; } @@ -541,7 +541,7 @@ static void MVD_ParseSound( mvd_t *mvd, int extrabits ) { cl = client->cl; // do not send unreliables to connecting clients - if( cl->state != cs_spawned || cl->download || cl->nodata ) { + if( cl->state != cs_spawned || cl->download || ( cl->flags & CF_NODATA ) ) { continue; } |