diff options
author | Discover- <amort11@hotmail.com> | 2012-07-07 17:14:57 +0200 |
---|---|---|
committer | Discover- <amort11@hotmail.com> | 2012-07-07 17:14:57 +0200 |
commit | 8c46681b447a0fd5d717a1706feec1d87eb7d9f0 (patch) | |
tree | dcf9ddc39dc453cd591943f5b9985e973812516d | |
parent | 26c36ba8543cae77af789276a25d4a3c3d06983d (diff) |
Core/LootMgr: Fix a little logging mistake on startup to prevent confusion.
-rwxr-xr-x | src/server/game/Loot/LootMgr.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/game/Loot/LootMgr.cpp b/src/server/game/Loot/LootMgr.cpp index 8d80c145026..6df73c2ef69 100755 --- a/src/server/game/Loot/LootMgr.cpp +++ b/src/server/game/Loot/LootMgr.cpp @@ -1599,9 +1599,9 @@ void LoadLootTemplates_Item() LootTemplates_Item.ReportUnusedIds(lootIdSet); if (count) - sLog->outString(">> Loaded %u prospecting loot templates in %u ms", count, GetMSTimeDiffToNow(oldMSTime)); + sLog->outString(">> Loaded %u item loot templates in %u ms", count, GetMSTimeDiffToNow(oldMSTime)); else - sLog->outErrorDb(">> Loaded 0 prospecting loot templates. DB table `item_loot_template` is empty"); + sLog->outErrorDb(">> Loaded 0 item loot templates. DB table `item_loot_template` is empty"); sLog->outString(); } |