Skip to content

Commit

Permalink
Hexen: Player falling scream
Browse files Browse the repository at this point in the history
The player sounds thinker was not enabled on the client.
  • Loading branch information
skyjake committed Aug 27, 2011
1 parent 07ca112 commit 4683225
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doomsday/plugins/common/src/p_user.c
Expand Up @@ -1971,7 +1971,7 @@ void P_PlayerThink(player_t *player, timespan_t ticLength)
P_PlayerThinkView(player);
P_PlayerThinkSpecial(player);

if(!IS_CLIENT) // Locally only.
if(IS_CLIENT) // Locally only.
{
P_PlayerThinkSounds(player);
}
Expand Down

0 comments on commit 4683225

Please sign in to comment.