mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-21 12:47:07 +00:00
fix(DB/Quest): change allowed races for Fire Hardened Mail (#7566)
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1629981420936961816');
|
||||
|
||||
-- Change the allowed race to this quest (Flags: Human 1, Dwarf 4, Night elf 8, Gnome 64, Draenei 1024)
|
||||
|
||||
-- Only human Grimand Elmore (1700)
|
||||
UPDATE `quest_template` SET `AllowableRaces` = `AllowableRaces`&~(4|8|64|1024) WHERE (`ID` = 1700);
|
||||
-- Only dwarfs and gnomes Klockmort Spannerspan (1704)
|
||||
UPDATE `quest_template` SET `AllowableRaces` = `AllowableRaces`&~(1|8|1024) WHERE (`ID` = 1704);
|
||||
-- Only night elves Mathiel (1703)
|
||||
UPDATE `quest_template` SET `AllowableRaces` = `AllowableRaces`&~(1|4|64|1024) WHERE (`ID` = 1703);
|
||||
|
||||
Reference in New Issue
Block a user