mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-05-10 19:01:50 +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);
|
return va("collect %u Rings", cn->requirement);
|
||||||
|
|
||||||
case UC_TOTALTUMBLETIME:
|
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_TicsToMinutes(cn->requirement, true),
|
||||||
G_TicsToSeconds(cn->requirement));
|
G_TicsToSeconds(cn->requirement),
|
||||||
|
G_TicsToCentiseconds(cn->requirement));
|
||||||
|
|
||||||
case UC_GAMECLEAR: // Requires game beaten >= x times
|
case UC_GAMECLEAR: // Requires game beaten >= x times
|
||||||
if (cn->requirement > 1)
|
if (cn->requirement > 1)
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue