diff options
author | Dr-J <daniel.jarrott0@gmail.com> | 2016-02-19 01:03:22 +0000 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2016-04-08 18:38:50 +0200 |
commit | c20ad186ff3ac27412be1fd8949ed3c9d0ba64dc (patch) | |
tree | fb60988b32cbeb93afe68b37294e836b162c9fc6 | |
parent | 14ed59301941269ea0472e7a779a557a1a0aac4b (diff) |
DB/Quest: Uncommon Scents
The quests http://www.wowhead.com/quest=24805 and http://www.wowhead.com/quest=24805 are optional breadcrumb quests and this first quest from both faction chains is skippable.
(cherry picked from commit f2ab2464bef53893015847516fbf5d7d4c8f1e22)
-rw-r--r-- | sql/updates/world/2016_04_08_12_world_2016_02_19_00_world.sql | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sql/updates/world/2016_04_08_12_world_2016_02_19_00_world.sql b/sql/updates/world/2016_04_08_12_world_2016_02_19_00_world.sql new file mode 100644 index 00000000000..bee93f7bdd4 --- /dev/null +++ b/sql/updates/world/2016_04_08_12_world_2016_02_19_00_world.sql @@ -0,0 +1,9 @@ +UPDATE `quest_template_addon` SET `PrevQuestID` =0 WHERE `ID` IN(24536,24655); + +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId` IN (19,20) AND `SourceEntry`IN(24805,24804) AND `ConditionTypeOrReference`=14 AND `ConditionValue1` IN(24536,24655); + +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES +(19, 0, 24805, 0, 0, 14, 0, 24536, 0, 0, 0, 0, 0, '', 'Uncommon Scents is optional BreadCrumb Quest'), +(20, 0, 24805, 0, 0, 14, 0, 24536, 0, 0, 0, 0, 0, '', 'Uncommon Scents is optional BreadCrumb Quest'), +(19, 0, 24804, 0, 0, 14, 0, 24655, 0, 0, 0, 0, 0, '', 'Uncommon Scents is optional BreadCrumb Quest'), +(20, 0, 24804, 0, 0, 14, 0, 24655, 0, 0, 0, 0, 0, '', 'Uncommon Scents is optional BreadCrumb Quest'); |