Skip to content

Commit

Permalink
Added missing parenthesis (#67)
Browse files Browse the repository at this point in the history
  • Loading branch information
TheBv authored May 28, 2022
1 parent 4ae4a98 commit b8311fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion logs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -978,7 +978,7 @@ void CLogs::Event_PlayerDamage( void *pTFGameStats, EDX CBasePlayer *pPlayer, co
if(distance >= 170.0)
{
V_strncpy(szAirshot, " (airshot \"1\")", sizeof(szAirshot));
V_snprintf(szAirshotHeight, sizeof(szAirshotHeight), " height \"%d\")",(int) distance);
V_snprintf(szAirshotHeight, sizeof(szAirshotHeight), " (height \"%d\")",(int) distance);
}
}
}
Expand Down

0 comments on commit b8311fc

Please sign in to comment.