Merge pull request #25 from BjossiAlfreds/checkvelocity

maxvelocity correctly enforced
This commit is contained in:
Yamagi 2019-09-23 13:30:28 +02:00 committed by GitHub
commit 9b41bb0f92
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 12 deletions

View File

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