mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Remove quotation marks from UC_UNLOCKABLE condition text
This commit is contained in:
parent
e46f246c95
commit
9383551cc3
1 changed files with 1 additions and 1 deletions
|
|
@ -2417,7 +2417,7 @@ static const char *M_GetConditionString(condition_t *cn)
|
||||||
return work;
|
return work;
|
||||||
}
|
}
|
||||||
case UC_UNLOCKABLE: // Requires unlockable x to be obtained
|
case UC_UNLOCKABLE: // Requires unlockable x to be obtained
|
||||||
return va("get \"%s\"",
|
return va("get %s",
|
||||||
gamedata->unlocked[cn->requirement-1]
|
gamedata->unlocked[cn->requirement-1]
|
||||||
? unlockables[cn->requirement-1].name
|
? unlockables[cn->requirement-1].name
|
||||||
: "???");
|
: "???");
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue