Don't use qtrue/qfalse for onground

This commit is contained in:
cypress 2024-09-04 20:46:18 -07:00
parent d657027ab0
commit 648170fd26
1 changed files with 2 additions and 2 deletions

View File

@ -385,9 +385,9 @@ void SV_ClientThink (void)
return;
if ((int)sv_player->v.flags & FL_ONGROUND)
onground = qtrue;
onground = true;
else
onground = qfalse;
onground = false;
origin = sv_player->v.origin;
velocity = sv_player->v.velocity;