diff --git a/doomsday/plugins/jdoom/src/m_cheat.c b/doomsday/plugins/jdoom/src/m_cheat.c index b03ea87480..19900c4998 100644 --- a/doomsday/plugins/jdoom/src/m_cheat.c +++ b/doomsday/plugins/jdoom/src/m_cheat.c @@ -87,6 +87,9 @@ int Cht_Reveal(const int* args, int player); static boolean cheatsEnabled(void) { +#ifdef _DEBUG + if(IS_NETWORK_SERVER) return true; // Server operator can always cheat. +#endif return !IS_NETGAME; }