Skip to content

Commit

Permalink
Hexen: Allow spawning mobjs for client
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed May 22, 2011
1 parent 21aaaa4 commit 1af1f0f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions doomsday/plugins/jhexen/src/p_mobj.c
Expand Up @@ -1228,9 +1228,11 @@ mobj_t* P_SpawnMobj3f(mobjtype_t type, float x, float y, float z,

info = &MOBJINFO[type];

/*
// Clients only spawn local objects.
if(!(info->flags & MF_LOCAL) && IS_CLIENT)
return NULL;
*/

// Not for deathmatch?
if(deathmatch && (info->flags & MF_NOTDMATCH))
Expand Down

0 comments on commit 1af1f0f

Please sign in to comment.