diff options
author | Aokromes <Aokromes@users.noreply.github.com> | 2016-04-01 04:37:20 +0200 |
---|---|---|
committer | Aokromes <Aokromes@users.noreply.github.com> | 2016-04-01 04:37:20 +0200 |
commit | 8ea8de42ead719c44f3ac652e62ca0c26f0735fd (patch) | |
tree | 49aaa2ec74e9b19047f0e6862bebc43d8fbcc88c /src | |
parent | 9bbca372b6395ebf97d898f018459cc88f3c3a38 (diff) |
Core/Misc: Fix log
Diffstat (limited to 'src')
-rw-r--r-- | src/server/game/Globals/ObjectMgr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Globals/ObjectMgr.cpp b/src/server/game/Globals/ObjectMgr.cpp index 9801c38514c..48e694b80c7 100644 --- a/src/server/game/Globals/ObjectMgr.cpp +++ b/src/server/game/Globals/ObjectMgr.cpp @@ -4063,7 +4063,7 @@ void ObjectMgr::LoadQuests() } else if (qinfo->SourceItemIdCount == 0) { - TC_LOG_ERROR("sql.sql", "Quest %u has `SourceItemId` = %u but `SourceItemIdCount` = 0, set to 1 but need fix in DB.", + TC_LOG_ERROR("sql.sql", "Quest %u has `StartItem` = %u but `ProvidedItemCount` = 0, set to 1 but need fix in DB.", qinfo->GetQuestId(), qinfo->SourceItemId); qinfo->SourceItemIdCount = 1; // update to 1 for allow quest work for backward compatibility with DB } |