From a602a90a8cee414257847eb4250107d5a0018b5b Mon Sep 17 00:00:00 2001 From: toaster Date: Mon, 23 Jan 2023 11:46:10 +0000 Subject: [PATCH] m_cheat.c: Permit singleplayer-only cheats in offline match race --- src/m_cheat.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/m_cheat.c b/src/m_cheat.c index edd23041c..48f3eca36 100644 --- a/src/m_cheat.c +++ b/src/m_cheat.c @@ -247,8 +247,8 @@ boolean cht_Responder(event_t *ev) #define REQUIRE_INLEVEL if (gamestate != GS_LEVEL || demo.playback)\ { CONS_Printf(M_GetText("You must be in a level to use this.\n")); return; } -#define REQUIRE_SINGLEPLAYER if (netgame || multiplayer)\ -{ CONS_Printf(M_GetText("This only works in single player.\n")); return; } +#define REQUIRE_SINGLEPLAYER if (netgame)\ +{ CONS_Printf(M_GetText("This only works offline.\n")); return; } // command that can be typed at the console! void Command_CheatNoClip_f(void)