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)