diff options
author | ReyDonovan <ReyDonovan@users.noreply.github.com> | 2018-08-19 15:08:13 +0200 |
---|---|---|
committer | Killyana <morphone1@gmail.com> | 2018-08-19 15:08:13 +0200 |
commit | cae31c8865be0f4687122e3e2f1f9046a45a8826 (patch) | |
tree | 4f405e3d34433691e38b5c6a5504d676a63af5a5 /sql | |
parent | 41c4fec42a370d2ffd75ab87bfabd82a2b0bf2b1 (diff) |
DB/Quest: Fix some quest chaining at Worgen area
Closes #22255
Diffstat (limited to 'sql')
-rw-r--r-- | sql/updates/world/master/2018_08_19_00_world.sql | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sql/updates/world/master/2018_08_19_00_world.sql b/sql/updates/world/master/2018_08_19_00_world.sql new file mode 100644 index 00000000000..6e74fd3c11d --- /dev/null +++ b/sql/updates/world/master/2018_08_19_00_world.sql @@ -0,0 +1,6 @@ +-- worgen chain Quest +UPDATE `creature_template` SET `npcflag` = 0 WHERE `entry` = 34884; -- not questgiver +DELETE FROM `creature_queststarter` WHERE `id` IN (34884); + +UPDATE `quest_template_addon` SET `ExclusiveGroup` = -14093, `NextQuestID`=14099 WHERE `ID` IN (14098, 14093); +UPDATE `quest_template_addon` SET `PrevQuestID`=0 WHERE `ID`=14099; |