(svn r21428) -Fix [FS#4021]: vehicles could be built while the game it paused. Now you can enable or disable that with a setting

This commit is contained in:
rubidium
2010-12-07 21:09:30 +00:00
parent 78054d7ad5
commit 434abd6dea
4 changed files with 35 additions and 8 deletions

View File

@@ -1365,7 +1365,7 @@ void GameLoop()
if (!_pause_mode && HasBit(_display_opt, DO_FULL_ANIMATION)) DoPaletteAnimations();
if (!_pause_mode || _cheats.build_in_pause.value) MoveAllTextEffects();
if (!_pause_mode || _settings_game.construction.command_pause_level > CMDPL_NO_CONSTRUCTION) MoveAllTextEffects();
InputLoop();