aboutsummaryrefslogtreecommitdiff
path: root/src/server/game/Loot
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2020-01-25 14:15:20 +0100
committerShauren <shauren.trinity@gmail.com>2020-01-25 14:15:20 +0100
commit4746331f495129f79531f4af0984aa0bd90eebda (patch)
tree70d252c0eb699501f0ef5bd03e79c64c575fd5b1 /src/server/game/Loot
parenta4a266ed2c3cbc0e32c601256ea55f2f26ef077f (diff)
Core/Misc: Removed references to item_template in logs
Diffstat (limited to 'src/server/game/Loot')
-rw-r--r--src/server/game/Loot/LootMgr.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Loot/LootMgr.cpp b/src/server/game/Loot/LootMgr.cpp
index 2a0b5cf684e..b7f20ee3fd0 100644
--- a/src/server/game/Loot/LootMgr.cpp
+++ b/src/server/game/Loot/LootMgr.cpp
@@ -311,7 +311,7 @@ bool LootStoreItem::IsValid(LootStore const& store, uint32 entry) const
ItemTemplate const* proto = sObjectMgr->GetItemTemplate(itemid);
if (!proto)
{
- TC_LOG_ERROR("sql.sql", "Table '%s' Entry %d Item %d: item entry not listed in `item_template` - skipped", store.GetName(), entry, itemid);
+ TC_LOG_ERROR("sql.sql", "Table '%s' Entry %d Item %d: item does not exist - skipped", store.GetName(), entry, itemid);
return false;
}