Fixed start/end zone speed (CS:S)

This commit is contained in:
shavitush 2017-09-11 17:42:33 +03:00
parent f38bea2ea5
commit 04ebed6251

View File

@ -572,7 +572,8 @@ void UpdateHUD(int client)
else
{
FormatEx(sHintText, 32, "%T", "HudInStartZone", client, iSpeed);
// yes, this space is intentional
FormatEx(sHintText, 32, "%T ", "HudInStartZone", client, iSpeed);
}
}
@ -585,7 +586,7 @@ void UpdateHUD(int client)
else
{
FormatEx(sHintText, 32, "%T", "HudInEndZone", client, iSpeed);
FormatEx(sHintText, 32, "%T ", "HudInEndZone", client, iSpeed);
}
}
}