aboutsummaryrefslogtreecommitdiff
path: root/src/server/game/Texts/CreatureTextMgr.cpp
diff options
context:
space:
mode:
authorSpp <spp@jorge.gr>2012-08-03 15:54:54 +0200
committerSpp <spp@jorge.gr>2012-08-03 15:54:54 +0200
commit634776e0bcc90e610a3f736e8ddf75792ad9b73e (patch)
treefbe98d997a68f99062eed13070c707a8a4b5e76d /src/server/game/Texts/CreatureTextMgr.cpp
parent55ce180f2867700b28921d99f9a0cb9c83330c91 (diff)
Fix compile under windows
Diffstat (limited to 'src/server/game/Texts/CreatureTextMgr.cpp')
-rwxr-xr-xsrc/server/game/Texts/CreatureTextMgr.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/server/game/Texts/CreatureTextMgr.cpp b/src/server/game/Texts/CreatureTextMgr.cpp
index 32d361faa9a..f64043b7038 100755
--- a/src/server/game/Texts/CreatureTextMgr.cpp
+++ b/src/server/game/Texts/CreatureTextMgr.cpp
@@ -78,7 +78,7 @@ void CreatureTextMgr::LoadCreatureTexts()
if (!result)
{
sLog->outInfo(LOG_FILTER_GENERAL, ">> Loaded 0 ceature texts. DB table `creature_texts` is empty.");
-
+
return;
}
@@ -137,7 +137,7 @@ void CreatureTextMgr::LoadCreatureTexts()
} while (result->NextRow());
sLog->outInfo(LOG_FILTER_GENERAL, ">> Loaded %u creature texts for %u creatures in %u ms", textCount, creatureCount, GetMSTimeDiffToNow(oldMSTime));
-
+
}
void CreatureTextMgr::LoadCreatureTextLocales()
@@ -167,7 +167,7 @@ void CreatureTextMgr::LoadCreatureTextLocales()
} while (result->NextRow());
sLog->outInfo(LOG_FILTER_GENERAL, ">> Loaded %u creature localized texts in %u ms", textCount, GetMSTimeDiffToNow(oldMSTime));
-
+
}
uint32 CreatureTextMgr::SendChat(Creature* source, uint8 textGroup, uint64 whisperGuid /*= 0*/, ChatMsg msgType /*= CHAT_MSG_ADDON*/, Language language /*= LANG_ADDON*/, TextRange range /*= TEXT_RANGE_NORMAL*/, uint32 sound /*= 0*/, Team team /*= TEAM_OTHER*/, bool gmOnly /*= false*/, Player* srcPlr /*= NULL*/)