diff options
| author | offl <offl@users.noreply.github.com> | 2021-01-26 03:00:35 +0200 |
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2022-03-06 16:25:57 +0100 |
| commit | 7c2129b60e4529e826ac1fdd4918bad400329a71 (patch) | |
| tree | e9fec32d5ec2dd28d42c8c211cf150c36446f1f8 | |
| parent | 85b15a4b8c798f0bcb190a5481d624e6eb091e67 (diff) | |
DB/Quest: Fix 'Garments of ...' chains and conditions
Closes #25940
Quests are available only by corresponding to quest location races
(cherry picked from commit f474418651557acb621e9634993738118fb54a7e)
| -rw-r--r-- | sql/updates/world/master/2022_03_06_02_world_2021_01_26_00_world.sql | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/sql/updates/world/master/2022_03_06_02_world_2021_01_26_00_world.sql b/sql/updates/world/master/2022_03_06_02_world_2021_01_26_00_world.sql new file mode 100644 index 00000000000..ebe1a5cacc5 --- /dev/null +++ b/sql/updates/world/master/2022_03_06_02_world_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 |
