mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
white space
This commit is contained in:
parent
1291766298
commit
a062c758fd
1 changed files with 3 additions and 3 deletions
|
@ -334,8 +334,8 @@ SV_Physics_Client (edict_t *ent, int num)
|
||||||
case MOVETYPE_WALK:
|
case MOVETYPE_WALK:
|
||||||
if (!SV_RunThink (ent))
|
if (!SV_RunThink (ent))
|
||||||
return;
|
return;
|
||||||
if (!SV_CheckWater (ent) && !((int) SVfloat (ent, flags) &
|
if (!SV_CheckWater (ent)
|
||||||
FL_WATERJUMP))
|
&& !((int) SVfloat (ent, flags) & FL_WATERJUMP))
|
||||||
SV_AddGravity (ent);
|
SV_AddGravity (ent);
|
||||||
SV_CheckStuck (ent);
|
SV_CheckStuck (ent);
|
||||||
SV_WalkMove (ent);
|
SV_WalkMove (ent);
|
||||||
|
@ -364,9 +364,9 @@ SV_Physics_Client (edict_t *ent, int num)
|
||||||
(int) SVfloat (ent, movetype));
|
(int) SVfloat (ent, movetype));
|
||||||
}
|
}
|
||||||
|
|
||||||
// call standard player post-think
|
|
||||||
SV_LinkEdict (ent, true);
|
SV_LinkEdict (ent, true);
|
||||||
|
|
||||||
|
// call standard player post-think
|
||||||
*sv_globals.time = sv.time;
|
*sv_globals.time = sv.time;
|
||||||
*sv_globals.self = EDICT_TO_PROG (&sv_pr_state, ent);
|
*sv_globals.self = EDICT_TO_PROG (&sv_pr_state, ent);
|
||||||
PR_ExecuteProgram (&sv_pr_state, sv_funcs.PlayerPostThink);
|
PR_ExecuteProgram (&sv_pr_state, sv_funcs.PlayerPostThink);
|
||||||
|
|
Loading…
Reference in a new issue