mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-24 14:16:31 +00:00
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:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user