diff options
Diffstat (limited to 'source/sv_send.c')
-rw-r--r-- | source/sv_send.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/sv_send.c b/source/sv_send.c index c87a16c..cabf340 100644 --- a/source/sv_send.c +++ b/source/sv_send.c @@ -282,7 +282,7 @@ void SV_Multicast( vec3_t origin, multicast_t to ) { } // do not send unreliables to connecting clients if( !( flags & MSG_RELIABLE ) && ( client->state != cs_spawned || - client->download || client->nodata ) ) + client->download || ( client->flags & CF_NODATA ) ) ) { continue; } @@ -766,7 +766,7 @@ void SV_SendClientMessages( void ) { // send a message to each connected client FOR_EACH_CLIENT( client ) { - if( client->state != cs_spawned || client->download || client->nodata ) + if( client->state != cs_spawned || client->download || ( client->flags & CF_NODATA ) ) goto finish; // if the reliable message overflowed, |