mirror of
https://github.com/ReactionQuake3/reaction.git
synced 2025-02-23 20:21:32 +00:00
IOQ3 commit 2380
This commit is contained in:
parent
f283229a7d
commit
186ddf6088
1 changed files with 8 additions and 4 deletions
|
@ -1966,15 +1966,19 @@ void SV_ExecuteClientMessage( client_t *cl, msg_t *msg ) {
|
||||||
}
|
}
|
||||||
} while ( 1 );
|
} while ( 1 );
|
||||||
|
|
||||||
|
// read optional voip data
|
||||||
|
if ( c == clc_voip ) {
|
||||||
|
#ifdef USE_VOIP
|
||||||
|
SV_UserVoip( cl, msg );
|
||||||
|
c = MSG_ReadByte( msg );
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
// read the usercmd_t
|
// read the usercmd_t
|
||||||
if ( c == clc_move ) {
|
if ( c == clc_move ) {
|
||||||
SV_UserMove( cl, msg, qtrue );
|
SV_UserMove( cl, msg, qtrue );
|
||||||
} else if ( c == clc_moveNoDelta ) {
|
} else if ( c == clc_moveNoDelta ) {
|
||||||
SV_UserMove( cl, msg, qfalse );
|
SV_UserMove( cl, msg, qfalse );
|
||||||
} else if ( c == clc_voip ) {
|
|
||||||
#ifdef USE_VOIP
|
|
||||||
SV_UserVoip( cl, msg );
|
|
||||||
#endif
|
|
||||||
} else if ( c != clc_EOF ) {
|
} else if ( c != clc_EOF ) {
|
||||||
Com_Printf( "WARNING: bad command byte for client %i\n", (int) (cl - svs.clients) );
|
Com_Printf( "WARNING: bad command byte for client %i\n", (int) (cl - svs.clients) );
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue