Self-review: Fix missing space in "reach at least400% on the speedometer"

This commit is contained in:
toaster 2023-10-20 16:18:10 +01:00
parent 82afb5da5a
commit 22bef38562

View file

@ -2500,7 +2500,7 @@ static const char *M_GetConditionString(condition_t *cn)
case UCRP_SPEEDOMETER:
return va("reach %s%u%% on the speedometer",
(cn->requirement == 999)
? "" : "at least",
? "" : "at least ",
cn->requirement
);
case UCRP_DRAFTDURATION: