mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-10 14:42:13 +00:00
Server: Check for fakeclients before attempting to 'fixangle' them
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@5792 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
8dce502335
commit
29e511817a
1 changed files with 1 additions and 1 deletions
|
@ -10329,7 +10329,7 @@ qboolean SV_RunFullQCMovement(client_t *client, usercmd_t *ucmd)
|
|||
PR_ExecuteProgram(svprogfuncs, gfuncs.RunClientCommand);
|
||||
|
||||
|
||||
if (!sv_player->v->fixangle)
|
||||
if (!sv_player->v->fixangle && client->protocol != SCP_BAD)
|
||||
{
|
||||
int i;
|
||||
vec3_t delta;
|
||||
|
|
Loading…
Reference in a new issue