mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-26 03:51:50 +00:00
M_GetConditionString: Do not add a suffix for UC_MAPENCORE - that condition already has a guaranteed prefix saying the same thing.
This commit is contained in:
parent
8f1bea71de
commit
14b6c0f275
1 changed files with 2 additions and 3 deletions
|
|
@ -1478,11 +1478,10 @@ static const char *M_GetConditionString(condition_t *cn)
|
|||
else if (cn->type == UC_MAPSPBATTACK)
|
||||
work = "conquer";
|
||||
|
||||
work = va("%s%s %s%s",
|
||||
work = va("%s%s %s",
|
||||
prefix,
|
||||
work,
|
||||
title,
|
||||
(cn->type == UC_MAPENCORE) ? " in Encore Mode" : "");
|
||||
title);
|
||||
Z_Free(title);
|
||||
return work;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue