mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-02-17 19:11:30 +00:00
UC_TOTALTUMBLETIME: Show centiseconds too
This commit is contained in:
parent
a1f93b4c60
commit
d122ddf1c7
1 changed files with 3 additions and 2 deletions
|
|
@ -1977,9 +1977,10 @@ static const char *M_GetConditionString(condition_t *cn)
|
|||
return va("collect %u Rings", cn->requirement);
|
||||
|
||||
case UC_TOTALTUMBLETIME:
|
||||
return va("tumble through the air for %i:%02i",
|
||||
return va("tumble through the air for %i:%02i.%02i",
|
||||
G_TicsToMinutes(cn->requirement, true),
|
||||
G_TicsToSeconds(cn->requirement));
|
||||
G_TicsToSeconds(cn->requirement),
|
||||
G_TicsToCentiseconds(cn->requirement));
|
||||
|
||||
case UC_GAMECLEAR: // Requires game beaten >= x times
|
||||
if (cn->requirement > 1)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue