Skip to content

Commit

Permalink
Fixed|Doom|Multiplayer: Only retain non-dropped weapons
Browse files Browse the repository at this point in the history
IssueID #1714
  • Loading branch information
skyjake committed Apr 22, 2014
1 parent c4d2fb5 commit 37db819
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doomsday/plugins/doom/src/p_inter.c
Expand Up @@ -550,7 +550,7 @@ static dd_bool pickupWeapon(player_t *plr, weapontype_t weaponType,
}
}

if(IS_NETGAME && G_Ruleset_Deathmatch() != 2)
if(IS_NETGAME && G_Ruleset_Deathmatch() != 2 && !dropped)
{
// Leave placed weapons forever on net games.
return false;
Expand Down

0 comments on commit 37db819

Please sign in to comment.