diff options
author | Wyrserth <wyrserth@protonmail.com> | 2019-07-09 22:47:11 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2021-12-15 00:17:32 +0100 |
commit | 755a83f634c7c87cc07f743e94d77c8c12356c32 (patch) | |
tree | 16fd5b4506c431a6d9153abd1b713f834ef9e9e3 /src | |
parent | a878e843d7aa693b3b24eb066093ec45ed86959e (diff) |
Core/Quest: remove arbitrary error logs related to breadcrumb quest chaining.
There are complex cases where breadcrumb quests are mutually exclusive with other breadcrumbs leading to other quests, chaining them shouldn't generate log errors.
(cherry picked from commit e6080116f9acb41b1c3d26468a679ff7e4b7c106)
Diffstat (limited to 'src')
-rw-r--r-- | src/server/game/Globals/ObjectMgr.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/server/game/Globals/ObjectMgr.cpp b/src/server/game/Globals/ObjectMgr.cpp index 1cb5d55af8f..4a81a16a9f6 100644 --- a/src/server/game/Globals/ObjectMgr.cpp +++ b/src/server/game/Globals/ObjectMgr.cpp @@ -5109,8 +5109,6 @@ void ObjectMgr::LoadQuests() } if (qinfo->_nextQuestID) TC_LOG_ERROR("sql.sql", "Quest %u is a breadcrumb, should not unlock quest %u", qinfo->_id, qinfo->_nextQuestID); - if (qinfo->_exclusiveGroup) - TC_LOG_ERROR("sql.sql", "Quest %u is a breadcrumb in exclusive group %i", qinfo->_id, qinfo->_exclusiveGroup); } if (qinfo->_exclusiveGroup) |