mirror of
https://github.com/azerothcore/azerothcore-wotlk.git
synced 2026-01-25 05:40:56 -08:00
fix(DB/Quest) - Makes a bunch of "mandatory" quests into "optional" (#20610)
* Created file * Removed required quests that should be optional * Added another 2 quests
This commit is contained in:
parent
139e8176d5
commit
cdade8dcd6
1 changed files with 35 additions and 0 deletions
|
|
@ -0,0 +1,35 @@
|
|||
--
|
||||
-- James Hyal (1/2) requirement removed from James Hyal (2/2)
|
||||
UPDATE `quest_template_addon` SET `PrevQuestID` = 0 WHERE (`ID` = 1302);
|
||||
|
||||
-- Little Pamela requirement removed from Pamela's Doll
|
||||
UPDATE `quest_template_addon` SET `NextQuestID` = 0 WHERE (`ID` = 5142);
|
||||
|
||||
-- Sister Pamela requirement removed from Pamela's Doll
|
||||
UPDATE `quest_template_addon` SET `NextQuestID` = 0 WHERE (`ID` = 5601);
|
||||
|
||||
-- Uncle Carlin requirement removed from Defenders of Darrowshire
|
||||
UPDATE `quest_template_addon` SET `PrevQuestID` = 0 WHERE (`ID` = 5211);
|
||||
|
||||
-- A Troubled Spirit requirement removed from Warrior Kinship
|
||||
UPDATE `quest_template_addon` SET `PrevQuestID` = 0 WHERE (`ID` = 8423);
|
||||
|
||||
-- A Call to Arms: The Plaguelands! requirement removed from Clear the Way
|
||||
-- Stormwind
|
||||
UPDATE `quest_template_addon` SET `NextQuestID` = 0 WHERE (`ID` = 5066);
|
||||
-- Ironforge
|
||||
UPDATE `quest_template_addon` SET `NextQuestID` = 0 WHERE (`ID` = 5090);
|
||||
-- Darnassus
|
||||
UPDATE `quest_template_addon` SET `NextQuestID` = 0 WHERE (`ID` = 5091);
|
||||
-- Exodar
|
||||
UPDATE `quest_template_addon` SET `NextQuestID` = 0 WHERE (`ID` = 10373);
|
||||
|
||||
-- Malin's Request (1/2) requirement removed from Worth Its Weight in Gold
|
||||
UPDATE `quest_template_addon` SET `PrevQuestID` = 0 WHERE (`ID` = 691);
|
||||
|
||||
-- Tran'rek requirement removed from Scarab Shells
|
||||
UPDATE `quest_template_addon` SET `PrevQuestID` = 0 WHERE (`ID` = 2865);
|
||||
|
||||
-- Stoley's Debt requirement removed from Stoley's Shipment
|
||||
UPDATE `quest_template_addon` SET `PrevQuestID` = 0 WHERE (`ID` = 2873);
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue