From 32fd3d37b3126bd9cad73fb033f1012083a30674 Mon Sep 17 00:00:00 2001 From: rorshan <60732320+rorshan@users.noreply.github.com> Date: Mon, 8 Dec 2025 23:18:50 +0100 Subject: [PATCH] fix(DB/Quests): Fix multiple quest requirements in Kolramas hub (#24054) Please read the "Known Issues and TODO List:" https://github.com/azerothcore/azerothcore-wotlk/pull/24054 for those whom may had people or themselves stuck on this quest(s). --- .../rev_1764951486952097200.sql | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1764951486952097200.sql diff --git a/data/sql/updates/pending_db_world/rev_1764951486952097200.sql b/data/sql/updates/pending_db_world/rev_1764951486952097200.sql new file mode 100644 index 000000000..941f34c31 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1764951486952097200.sql @@ -0,0 +1,18 @@ +-- PrevQuestID 0 to 12598, Skimmer Spinnerets requires Throwing Down +-- NextQuestID 12555 to 12583, Skimmer Spinnerets opens up Crashed Sprayer, not A Tangled Skein +-- ExclusiveGroup -12583 to 0, linear chain, no need for a group +UPDATE `quest_template_addon` SET `PrevQuestID` = 12598 , `NextQuestID` = 12583, `ExclusiveGroup` = 0 WHERE (`ID` = 12553); + +-- ExclusiveGroup -12583 to 0, linear chain, no need for a group +UPDATE `quest_template_addon` SET `ExclusiveGroup` = 0 WHERE (`ID` = 12583); + +-- PrevQuestID 0 to 12598, Cocooned! requires Throwing Down +-- NextQuestID 12555 to 0, Cocooned! doesn't open up A Tangled Skein +-- ExclusiveGroup -12583 to 0, linear chain, no need for a group +UPDATE `quest_template_addon` SET `PrevQuestID` = 12598, `NextQuestID` = 0, `ExclusiveGroup` = 0 WHERE (`ID` = 12606); + +-- PrevQuestID 0 to 12552, Pure Evil requires Death to the Necromagi +UPDATE `quest_template_addon` SET `PrevQuestID` = 12552 WHERE (`ID` = 12584); + +-- PrevQuestId 12596 to 12598, Death to the Necromagi requires Throwing Down, not Pa'Troll +UPDATE `quest_template_addon` SET `PrevQuestID` = 12598 WHERE (`ID` = 12552);