engine: server: fix useless double assignment

This commit is contained in:
Alibek Omarov 2022-05-29 01:59:15 +03:00
parent 86a777880f
commit db48d0ded7
1 changed files with 0 additions and 1 deletions

View File

@ -686,7 +686,6 @@ static void SV_SetupPMove( playermove_t *pmove, sv_client_t *cl, usercmd_t *ucmd
pmove->flFallVelocity = clent->v.flFallVelocity;
pmove->flSwimTime = clent->v.flSwimTime;
VectorCopy( clent->v.punchangle, pmove->punchangle );
pmove->flSwimTime = clent->v.flSwimTime;
pmove->flNextPrimaryAttack = 0.0f; // not used by PM_ code
pmove->effects = clent->v.effects;
pmove->flags = clent->v.flags;