From d3af5db8743bfc4ca84e04d3f9b78a5b1188d1cc Mon Sep 17 00:00:00 2001 From: toaster Date: Sat, 23 Dec 2023 21:38:23 +0000 Subject: [PATCH] readcondition: Fix AllChaos/AllSuper/AllEmeralds difficulty restriction --- src/deh_soc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/deh_soc.c b/src/deh_soc.c index 9c0a8feab..56c36604f 100644 --- a/src/deh_soc.c +++ b/src/deh_soc.c @@ -2773,9 +2773,9 @@ static void readcondition(UINT16 set, UINT32 id, char *word2) if (fastcmp(params[1], "NORMAL")) ; else if (fastcmp(params[1], "HARD")) - x1 = KARTSPEED_HARD; + re = KARTSPEED_HARD; else if (fastcmp(params[1], "MASTER")) - x1 = KARTGP_MASTER; + re = KARTGP_MASTER; else { deh_warning("gamespeed requirement \"%s\" invalid for condition ID %d", params[1], id+1);