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

View file

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