From 3741b89a0d6b93bdfe4f1cab77da2a21df1a4987 Mon Sep 17 00:00:00 2001 From: Fabian Greffrath Date: Mon, 16 Oct 2023 11:24:19 +0200 Subject: [PATCH] don't disable cheats in strict mode Fixes #1226, thanks @OpenRift412 --- src/m_cheat.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/m_cheat.c b/src/m_cheat.c index 0c39a19f..81fba22d 100644 --- a/src/m_cheat.c +++ b/src/m_cheat.c @@ -1281,9 +1281,6 @@ boolean M_CheatResponder(event_t *ev) { int i; - if (strictmode) - return false; - if (ev->type == ev_keydown && M_FindCheats(ev->data1)) return true;