fix(DB/loot): Unholy Alliance available without prerequisites (#6202)

Unholy Alliance part 2 was available without completing Unholy Alliance part 1

- Closes azerothcore#5984
- Closes chromiecraft/chromiecraft#678
This commit is contained in:
dillyns
2021-06-13 04:09:59 -04:00
committed by GitHub
parent 1b896277bd
commit ebd70d544b

View File

@@ -0,0 +1,6 @@
INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1622673575587160400');
SET @PART1 = 14352;
SET @PART2 = 14353;
UPDATE `quest_template_addon` SET `NextQuestID` = @PART2 WHERE `ID` = @PART1;
UPDATE `quest_template_addon` SET `PrevQuestID` = @PART1 WHERE `ID` = @PART2;