mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-10 22:51:57 +00:00
QW is based on NQ, as is H2.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@1001 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
50b566ea79
commit
f2c5ae1c54
1 changed files with 2 additions and 2 deletions
|
@ -1444,7 +1444,7 @@ void SV_UpdateToReliableMessages (void)
|
|||
ent = host_client->edict;
|
||||
|
||||
newval = ent->v->gravity*sv_gravity.value;
|
||||
if (progstype == PROG_NQ)
|
||||
if (progstype != PROG_QW)
|
||||
{
|
||||
if (!newval)
|
||||
newval = 1;
|
||||
|
@ -1457,7 +1457,7 @@ void SV_UpdateToReliableMessages (void)
|
|||
host_client->entgravity = newval;
|
||||
}
|
||||
newval = ent->v->maxspeed;
|
||||
if (progstype == PROG_NQ)
|
||||
if (progstype != PROG_QW)
|
||||
{
|
||||
if (!newval)
|
||||
newval = sv_maxspeed.value;
|
||||
|
|
Loading…
Reference in a new issue