Skip to content

Commit

Permalink
Fix typo from #1201
Browse files Browse the repository at this point in the history
  • Loading branch information
rtldg committed Feb 22, 2025
1 parent f547750 commit 23fa606
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addons/sourcemod/scripting/shavit-hud.sp
Original file line number Diff line number Diff line change
Expand Up @@ -2346,7 +2346,7 @@ void UpdateKeyHint(int client)

if ((gI_HUDSettings[client] & HUD_TIMELEFT) > 0 && GetMapTimeLeft(iTimeLeft) && iTimeLeft > 0)
{
FormatEx(sMessage, 256, (iTimeLeft > 150)? "%s%T: %d minutes":"%T: %d seconds", sMessage, "HudTimeLeft", client, (iTimeLeft > 150) ? (iTimeLeft / 60)+1 : iTimeLeft);
FormatEx(sMessage, 256, (iTimeLeft > 150)? "%s%T: %d minutes":"%s%T: %d seconds", sMessage, "HudTimeLeft", client, (iTimeLeft > 150) ? (iTimeLeft / 60)+1 : iTimeLeft);
}

if (target == client || (gI_HUDSettings[client] & HUD_OBSERVE) > 0)
Expand Down

0 comments on commit 23fa606

Please sign in to comment.