Fix compile under windows

This commit is contained in:
Spp
2012-08-03 15:54:54 +02:00
parent 55ce180f28
commit 634776e0bc
38 changed files with 334 additions and 334 deletions

View File

@@ -60,7 +60,7 @@ void LoadDisables()
if (!result)
{
sLog->outInfo(LOG_FILTER_GENERAL, ">> Loaded 0 disables. DB table `disables` is empty!");
return;
}
@@ -229,7 +229,7 @@ void LoadDisables()
while (result->NextRow());
sLog->outInfo(LOG_FILTER_GENERAL, ">> Loaded %u disables in %u ms", total_count, GetMSTimeDiffToNow(oldMSTime));
}
void CheckQuestDisables()
@@ -240,7 +240,7 @@ void CheckQuestDisables()
if (!count)
{
sLog->outInfo(LOG_FILTER_GENERAL, ">> Checked 0 quest disables.");
return;
}
@@ -260,7 +260,7 @@ void CheckQuestDisables()
}
sLog->outInfo(LOG_FILTER_GENERAL, ">> Checked %u quest disables in %u ms", count, GetMSTimeDiffToNow(oldMSTime));
}
bool IsDisabledFor(DisableType type, uint32 entry, Unit const* unit, uint8 flags)