Skip to content

Commit

Permalink
fixed issue with character regeneration countdown
Browse files Browse the repository at this point in the history
  • Loading branch information
bitpredator committed Oct 1, 2024
1 parent 215696b commit 9489c93
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ function StartDeathTimer()
-- early respawn timer
while earlySpawnTimer > 0 and IsDead do
Wait(0)
text = TranslateCap("respawn_available_in", secondsToClock(earlySpawnTimer))
text = TranslateCap("respawn_available_in", SecondsToClock(earlySpawnTimer))

DrawGenericTextThisFrame()
BeginTextCommandDisplayText("STRING")
Expand All @@ -256,7 +256,7 @@ function StartDeathTimer()
-- bleedout timer
while bleedoutTimer > 0 and IsDead do
Wait(0)
text = TranslateCap("respawn_bleedout_in", secondsToClock(bleedoutTimer))
text = TranslateCap("respawn_bleedout_in", SecondsToClock(bleedoutTimer))

if not Config.EarlyRespawnFine then
text = text .. TranslateCap("respawn_bleedout_prompt")
Expand Down

0 comments on commit 9489c93

Please sign in to comment.