1
0
forked from 0ad/0ad

Prevent observers from pausing the game. Patch by Stefan. Fixes #3341.

This was SVN commit r16871.
This commit is contained in:
leper 2015-07-19 23:03:03 +00:00
parent f240374b28
commit b0a5087dda

View File

@ -651,6 +651,9 @@ function resumeGame()
function togglePause()
{
if (g_IsObserver)
return;
closeMenu();
closeOpenDialogs();