Skip to content

Commit

Permalink
Fixed: Clients pausing the game
Browse files Browse the repository at this point in the history
Clients do not have authority to pause the game.
  • Loading branch information
skyjake committed Jul 13, 2011
1 parent 6951b18 commit 96267d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doomsday/plugins/common/src/g_controls.c
Expand Up @@ -492,7 +492,7 @@ DEFCC( CCmdPause )

void G_SetPause(boolean yes)
{
if(Hu_MenuIsActive() || Hu_IsMessageActive())
if(Hu_MenuIsActive() || Hu_IsMessageActive() || IS_CLIENT)
return; // No change.

if(yes)
Expand Down

0 comments on commit 96267d0

Please sign in to comment.