engine: server: read full voicedata message even if voice is disabled server wide
This commit is contained in:
parent
88c1b1400d
commit
905bbf1515
1 changed files with 6 additions and 6 deletions
|
@ -2587,11 +2587,11 @@ void SV_ParseVoiceData( sv_client_t *cl, sizebuf_t *msg )
|
|||
return;
|
||||
}
|
||||
|
||||
if ( (int)sv_voiceenable.value == 0 )
|
||||
return;
|
||||
|
||||
MSG_ReadBytes( msg, received, size );
|
||||
|
||||
if( !sv_voiceenable.value )
|
||||
return;
|
||||
|
||||
for( i = 0, cur = svs.clients; i < svs.maxclients; i++, cur++ )
|
||||
{
|
||||
if ( cur->state < cs_connected && cl != cur )
|
||||
|
|
Loading…
Add table
Reference in a new issue