Don't show Super Emerald related condition text if you haven't unlocked the second row of cups yet

This commit is contained in:
toaster 2024-04-15 14:52:16 +01:00
parent ebd946983c
commit ff05516901

View file

@ -2421,6 +2421,8 @@ static const char *M_GetConditionString(condition_t *cn)
if (cn->type == UC_ALLCHAOS) if (cn->type == UC_ALLCHAOS)
chaostext = "7 Chaos"; chaostext = "7 Chaos";
else if (M_CupSecondRowLocked() == true)
return NULL;
else if (cn->type == UC_ALLSUPER) else if (cn->type == UC_ALLSUPER)
chaostext = "7 Super"; chaostext = "7 Super";
else else