mirror of
https://git.code.sf.net/p/quake/newtree
synced 2025-02-01 20:30:57 +00:00
serverinfo sv_allowflymode is now serverinfo playerfly
This commit is contained in:
parent
f5bca8ba17
commit
dc7546dfbd
1 changed files with 1 additions and 1 deletions
|
@ -560,7 +560,7 @@ void SV_UpdateClientStats (client_t *client)
|
||||||
|
|
||||||
// FIXME: this should become a * key! --KB
|
// FIXME: this should become a * key! --KB
|
||||||
if (ent->v.movetype == MOVETYPE_FLY && !atoi(Info_ValueForKey
|
if (ent->v.movetype == MOVETYPE_FLY && !atoi(Info_ValueForKey
|
||||||
(svs.info, "sv_allowflymode")))
|
(svs.info, "playerfly")))
|
||||||
ent->v.movetype = MOVETYPE_WALK;
|
ent->v.movetype = MOVETYPE_WALK;
|
||||||
|
|
||||||
stats[STAT_FLYMODE] = (ent->v.movetype == MOVETYPE_FLY);
|
stats[STAT_FLYMODE] = (ent->v.movetype == MOVETYPE_FLY);
|
||||||
|
|
Loading…
Reference in a new issue