Skip to content

Commit

Permalink
Fixed|Multiplayer: "give i" does not work even when cheats allowed
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Mar 19, 2013
1 parent 2f9758d commit 01a6bb7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion doomsday/plugins/hexen/src/m_cheat.c
Expand Up @@ -349,7 +349,8 @@ CHEAT_FUNC(Inventory)
DENG_UNUSED(args);
DENG_ASSERT(player >= 0 && player < MAXPLAYERS);

if(IS_NETGAME) return false;
//if(IS_NETGAME) return false;

if(gameSkill == SM_NIGHTMARE) return false;
// Dead players can't cheat.
if(plr->health <= 0) return false;
Expand Down

0 comments on commit 01a6bb7

Please sign in to comment.