diff options
| author | offl <offl@users.noreply.github.com> | 2021-01-26 03:00:35 +0200 |
|---|---|---|
| committer | offl <offl@users.noreply.github.com> | 2021-01-26 03:00:35 +0200 |
| commit | f474418651557acb621e9634993738118fb54a7e (patch) | |
| tree | ff8835298ddccde0e16273291b549af1ce03a503 | |
| parent | 7d6f7e4d19b298632deeb27830b876b12c490a03 (diff) | |
DB/Quest: Fix 'Garments of ...' chains and conditions
Closes #25940
Quests are available only by corresponding to quest location races
| -rw-r--r-- | sql/updates/world/3.3.5/2021_01_26_00_world.sql | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2021_01_26_00_world.sql b/sql/updates/world/3.3.5/2021_01_26_00_world.sql new file mode 100644 index 00000000000..56453e474b6 --- /dev/null +++ b/sql/updates/world/3.3.5/2021_01_26_00_world.sql @@ -0,0 +1,19 @@ +-- +UPDATE `quest_template` SET `AllowableRaces` = 512 WHERE `ID` = 9489; -- Cleansing the Scar +UPDATE `quest_template_addon` SET `NextQuestID` = 0, `ExclusiveGroup` = 0 WHERE `ID` = 9489; -- Cleansing the Scar +UPDATE `quest_template` SET `AllowableRaces` = 1024 WHERE `ID` = 9586; -- Help Tavara +UPDATE `quest_template_addon` SET `NextQuestID` = 0, `ExclusiveGroup` = 0 WHERE `ID` = 9586; -- Help Tavara +UPDATE `quest_template` SET `AllowableRaces` = 16 WHERE `ID` = 5651; -- In Favor of Darkness +UPDATE `quest_template_addon` SET `NextQuestID` = 5650, `ExclusiveGroup` = 0 WHERE `ID` = 5651; -- In Favor of Darkness +UPDATE `quest_template` SET `AllowableRaces` = 16 WHERE `ID` = 5650; -- Garments of Darkness +UPDATE `quest_template` SET `AllowableRaces` = 128 WHERE `ID` = 5649; -- In Favor of Spirituality +UPDATE `quest_template_addon` SET `ExclusiveGroup` = 0 WHERE `ID` = 5649; -- In Favor of Spirituality +UPDATE `quest_template` SET `AllowableRaces` = 128 WHERE `ID` = 5648; -- Garments of Spirituality +UPDATE `quest_template_addon` SET `PrevQuestID` = 5649 WHERE `ID` = 5648; -- Garments of Spirituality +UPDATE `quest_template` SET `AllowableRaces` = 1 WHERE `ID` = 5623; -- In Favor of the Light +UPDATE `quest_template_addon` SET `ExclusiveGroup` = 0 WHERE `ID` = 5623; -- In Favor of the Light +UPDATE `quest_template` SET `AllowableRaces` = 1 WHERE `ID` = 5624; -- Garments of Light +UPDATE `quest_template_addon` SET `PrevQuestID` = 5623 WHERE `ID` = 5624; -- Garments of Light +UPDATE `quest_template` SET `AllowableRaces` = 4 WHERE `ID` = 5626; -- In Favor of the Light +UPDATE `quest_template_addon` SET `NextQuestID` = 5625, `ExclusiveGroup` = 0 WHERE `ID` = 5626; -- In Favor of the Light +UPDATE `quest_template` SET `AllowableRaces` = 4 WHERE `ID` = 5625; -- Garments of Light |
