Fixed World activation from resources

This commit is contained in:
Alex Zolotarev 2011-04-03 06:53:05 +01:00 committed by Alex Zolotarev
parent ef3d9ba306
commit 1561da21ef

View file

@ -71,6 +71,19 @@ namespace storage
LOG(LWARNING, (e.what(), "while adding file", *it, "so this file is deleted"));
}
}
// separate code to activate world data file from resources
// if it's not found in writable data dir
Platform::FilesList::iterator found = std::find(filesList.begin(), filesList.end(),
string(WORLD_FILE_NAME DATA_FILE_EXTENSION));
if (found == filesList.end())
{
try {
m_addMap(p.ReadPathForFile(WORLD_FILE_NAME DATA_FILE_EXTENSION));
} catch (std::exception const & e)
{
LOG(LWARNING, (e.what(), "while adding world data file"));
}
}
}
string Storage::UpdateBaseUrl() const