Avoid redundant re-scans for AI and game script files

This commit is contained in:
Jonathan G Rennison
2019-09-23 18:34:11 +01:00
parent 66b32df7cc
commit 158f063a38
2 changed files with 6 additions and 14 deletions

View File

@@ -184,15 +184,10 @@
AI::KillAll();
if (keepConfig) {
/* Run a rescan, which indexes all AIInfos again, and check if we can
* still load all the AIS, while keeping the configs in place */
Rescan();
/* Do not bother re-scanning AI files, just reset config */
ResetConfig();
} else {
delete AI::scanner_info;
delete AI::scanner_library;
AI::scanner_info = nullptr;
AI::scanner_library = nullptr;
/* Do not bother re-scanning AI files, just delete config */
for (CompanyID c = COMPANY_FIRST; c < MAX_COMPANIES; c++) {
if (_settings_game.ai_config[c] != nullptr) {
delete _settings_game.ai_config[c];