From 595c1ff9c86309dcd7bdf510f28909a3f2986bab Mon Sep 17 00:00:00 2001 From: toaster Date: Tue, 9 Apr 2024 16:55:57 +0100 Subject: [PATCH] BONUS ROUND --> GRAND PRIX Also, slightly clearer phrasing for "Grab a certain prize" --- src/m_cond.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/m_cond.c b/src/m_cond.c index b4228fe25..000e553a3 100644 --- a/src/m_cond.c +++ b/src/m_cond.c @@ -2520,7 +2520,7 @@ static const char *M_GetConditionString(condition_t *cn) case UC_PRISONEGGCD: // :butterfly: "alternatively you could say 'grab a hot toooon' or 'smooth beeat'" - return "BONUS ROUND: grab a prize from a Prison Egg"; + return "GRAND PRIX: grab a certain prize from a Prison Egg"; case UC_AND: return "&"; @@ -2529,10 +2529,10 @@ static const char *M_GetConditionString(condition_t *cn) case UC_DESCRIPTIONOVERRIDE: return cn->stringvar; + case UCRP_PREFIX_BONUSROUND: + //return "BONUS ROUND:"; -- our final testers bounced off this, just fallthru to GRAND PRIX instead case UCRP_PREFIX_GRANDPRIX: return "GRAND PRIX:"; - case UCRP_PREFIX_BONUSROUND: - return "BONUS ROUND:"; case UCRP_PREFIX_TIMEATTACK: if (!M_SecretUnlocked(SECRET_TIMEATTACK, true)) return NULL;