UC_ALLCHAOS, UC_ALLSUPER, UC_ALLEMERALDS: Provide a ??? tease for Master difficulty if not unlocked

This commit is contained in:
toaster 2023-03-11 21:07:29 +00:00
parent 6f62abc1ef
commit 4d88923173

View file

@ -1094,7 +1094,10 @@ static const char *M_GetConditionString(condition_t *cn)
} }
else if (cn->requirement == KARTGP_MASTER) else if (cn->requirement == KARTGP_MASTER)
{ {
speedtext = " on Master difficulty"; if (M_SecretUnlocked(SECRET_MASTERMODE, true))
speedtext = " on Master difficulty";
else
speedtext = " on ???";
} }
return va("collect all %s Emeralds%s%s", chaostext, speedtext, orbetter); return va("collect all %s Emeralds%s%s", chaostext, speedtext, orbetter);