feat(Core/MapUpdate): switch from ACE_Method_Request to PCQ (#3459)

This commit is contained in:
Kargatum
2020-11-14 03:56:26 +07:00
committed by GitHub
parent fc63d935b9
commit 543753b641
6 changed files with 90 additions and 281 deletions

View File

@@ -52,9 +52,9 @@ void MapManager::Initialize()
{
int num_threads(sWorld->getIntConfig(CONFIG_NUMTHREADS));
// Start mtmaps if needed.
if (num_threads > 0 && m_updater.activate(num_threads) == -1)
abort();
// Start mtmaps if needed
if (num_threads > 0)
m_updater.activate(num_threads);
}
void MapManager::InitializeVisibilityDistanceInfo()