fix(DB/Quest): Fix undead starting quests allowed races (#7876)

* fix(DB/Creature): Fixed Celebras the Redeemed gossip

* Delete rev_1630344741636829281.sql

* fix(DB/Quest): Fix undead starting quests allowed races

* Removing pre requisite
This commit is contained in:
Asthalor
2021-09-19 17:02:46 +02:00
committed by GitHub
parent 2a92fbacbd
commit 99b3b0de63

View File

@@ -0,0 +1,13 @@
INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1631624817554390205');
-- Flags: Orc 2, Undead 16, Tauren 32, Troll 128, Blood Elf 512
-- The Mindless Ones and Rattling the Rattlecages are now Horde only from undead only
UPDATE `quest_template` SET `AllowableRaces` = `AllowableRaces`|2|16|32|128|512 WHERE (`ID` IN (364, 3901));
-- Simple scroll, Encrypted Scroll, Hallowed Scroll, Glyphic Scroll and Tainted Scroll are now undead only from Horde only
UPDATE `quest_template` SET `AllowableRaces` = `AllowableRaces`&~(2|16|32|128|512) WHERE (`ID` IN (3095, 3096, 3097, 3098, 3099));
-- Remove the prerequisite quest of The Mindless Ones
UPDATE `quest_template_addon` SET `PrevQuestID` = 0 WHERE (`ID` = 364);