Merge pull request #26 from BjossiAlfreds/checkvelocity

maxvelocity correctly enforced
This commit is contained in:
Yamagi 2019-09-23 13:08:31 +02:00 committed by GitHub
commit 6258958105
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -76,24 +76,15 @@ SV_TestEntityPosition(edict_t *ent)
void void
SV_CheckVelocity(edict_t *ent) SV_CheckVelocity(edict_t *ent)
{ {
int i;
if (!ent) if (!ent)
{ {
return; return;
} }
/* bound velocity */ if (VectorLength(ent->velocity) > sv_maxvelocity->value)
for (i = 0; i < 3; i++)
{ {
if (ent->velocity[i] > sv_maxvelocity->value) VectorNormalize(ent->velocity);
{ VectorScale(ent->velocity, sv_maxvelocity->value, ent->velocity);
ent->velocity[i] = sv_maxvelocity->value;
}
else if (ent->velocity[i] < -sv_maxvelocity->value)
{
ent->velocity[i] = -sv_maxvelocity->value;
}
} }
} }