Skip to content

Commit

Permalink
Fix speedrunners separation
Browse files Browse the repository at this point in the history
  • Loading branch information
MSWS committed Aug 8, 2024
1 parent b49265e commit d7474e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mod/Jailbreak.SpecialDay/SpecialDays/SpeedrunDay.cs
Original file line number Diff line number Diff line change
Expand Up @@ -481,8 +481,8 @@ private string generateHTMLLine(CCSPlayerController player, int position,
var time = roundStartTime == null ?
0 :
MathF.Abs(distance) - roundStartTime.Value;
text += $"{time:F4}";
} else { text += $"{distance:N0}"; }
text += $" - {time:F4}";
} else { text += $" - {distance:N0}"; }

return $"<font color=\"#{color}\">{text}</font>{suffix}";
}
Expand Down

0 comments on commit d7474e0

Please sign in to comment.