Skip to content

Commit

Permalink
Fix typo that causes comparison to always evaluate to false.
Browse files Browse the repository at this point in the history
  • Loading branch information
tobhe authored and Razish committed Sep 2, 2022
1 parent f5ab5fa commit 9671dd7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/game/g_active.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2905,7 +2905,7 @@ qboolean G_CheckClampUcmd( gentity_t *ent, usercmd_t *ucmd )
}
}
if ( ent->client->ps.legsAnimTimer <= 1150
&& ent->client->ps.legsAnimTimer > 10500 )
&& ent->client->ps.legsAnimTimer > 1050 )
{
TIMER_Set( ent, "grappleDamageDebounce", 150 );
if ( ent->s.number < MAX_CLIENTS )
Expand Down

0 comments on commit 9671dd7

Please sign in to comment.