From 0ef95875fa2a9c1caa8229a32def35c7de940810 Mon Sep 17 00:00:00 2001 From: toaster Date: Tue, 13 Dec 2022 16:15:48 +0000 Subject: [PATCH] Fix copypaste typo for M_MapLocked --- src/m_cond.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/m_cond.c b/src/m_cond.c index 5248008ed..8c9223c13 100644 --- a/src/m_cond.c +++ b/src/m_cond.c @@ -1052,7 +1052,7 @@ boolean M_MapLocked(INT32 mapnum) for (i = 0; i < MAXUNLOCKABLES; ++i) { - if (unlockables[i].type != SECRET_CUP) + if (unlockables[i].type != SECRET_MAP) continue; if (M_UnlockableMapNum(&unlockables[i]) != mapnum-1) continue;