From ff0551690177d91bb681e1745c1d2e707278f4ab Mon Sep 17 00:00:00 2001 From: toaster Date: Mon, 15 Apr 2024 14:52:16 +0100 Subject: [PATCH] Don't show Super Emerald related condition text if you haven't unlocked the second row of cups yet --- src/m_cond.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/m_cond.c b/src/m_cond.c index b8ef09890..a3733f899 100644 --- a/src/m_cond.c +++ b/src/m_cond.c @@ -2421,6 +2421,8 @@ static const char *M_GetConditionString(condition_t *cn) if (cn->type == UC_ALLCHAOS) chaostext = "7 Chaos"; + else if (M_CupSecondRowLocked() == true) + return NULL; else if (cn->type == UC_ALLSUPER) chaostext = "7 Super"; else