# HG changeset patch # User maedhros # Date 1178441403 0 # Node ID acb703c8e52c2c17bf7f8f2b9790347c96777be9 # Parent 03c98094f41ca6123ef8db9a32ec89885f3cb220 (svn r9792) -Fix (r9734): Pause on newgame should only apply to games, not the scenario editor. diff -r 03c98094f41c -r acb703c8e52c src/genworld.cpp --- a/src/genworld.cpp Sat May 05 23:21:49 2007 +0000 +++ b/src/genworld.cpp Sun May 06 08:50:03 2007 +0000 @@ -154,7 +154,7 @@ if (_network_dedicated) DEBUG(net, 0, "Map generated, starting game"); - if (_patches.pause_on_newgame) DoCommandP(0, 1, 0, NULL, CMD_PAUSE); + if (_patches.pause_on_newgame && _game_mode == GM_NORMAL) DoCommandP(0, 1, 0, NULL, CMD_PAUSE); return NULL; }