And another one...

This commit is contained in:
Kartselyanski
2018-06-13 02:48:43 +03:00
committed by Barbz
parent 21aae9eec5
commit 1f51bf41cd

View File

@@ -403,11 +403,13 @@ void TransportMgr::SpawnContinentTransports()
if (_transportTemplates.empty()) if (_transportTemplates.empty())
return; return;
uint32 oldMSTime = getMSTime(); uint32 oldMSTime, count = 0;
uint32 count = 0; oldMSTime = getMSTime();
QueryResult result;
if (sWorld->getBoolConfig(CONFIG_ENABLE_CONTINENT_TRANSPORT)) if (sWorld->getBoolConfig(CONFIG_ENABLE_CONTINENT_TRANSPORT))
{ {
QueryResult result = WorldDatabase.Query("SELECT guid, entry FROM transports"); result = WorldDatabase.Query("SELECT guid, entry FROM transports");
if (result) if (result)
{ {
do do