fix(DB/Quest): Rework Vile Hold / Malykriss quest handling (#24941)
This commit is contained in:
parent
76bbc31d8a
commit
a0d0ef7954
1 changed files with 9 additions and 0 deletions
|
|
@ -0,0 +1,9 @@
|
|||
-- Phase for accepting or having completed any of the "Rider of%" quests
|
||||
DELETE FROM `spell_area` WHERE `spell` = 58863 AND `area` = 4520;
|
||||
INSERT INTO `spell_area` (`spell`, `area`, `quest_start`, `quest_end`, `aura_spell`, `racemask`, `gender`, `autocast`, `quest_start_status`, `quest_end_status`) VALUES
|
||||
(58863, 4520, 13161, 0, 0, 0, 2, 1, 74, 11),
|
||||
(58863, 4520, 13162, 0, 0, 0, 2, 1, 74, 11),
|
||||
(58863, 4520, 13163, 0, 0, 0, 2, 1, 74, 11);
|
||||
|
||||
-- Make sure all prerequisites are completed
|
||||
UPDATE `conditions` SET `ElseGroup` = 0 WHERE `SourceTypeOrReferenceId` = 19 AND `SourceEntry` IN (13161, 13162, 13163) AND `ConditionTypeOrReference` = 8 AND `ConditionValue1` IN (13146, 13147, 13160);
|
||||
Loading…
Add table
Add a link
Reference in a new issue