From 06277584990815037f3d52a4cccb34309831bd54 Mon Sep 17 00:00:00 2001 From: Asthalor <87535580+Asthalor@users.noreply.github.com> Date: Wed, 1 Sep 2021 14:08:26 +0200 Subject: [PATCH] fix(DB/Quest): change allowed races for Fire Hardened Mail (#7566) --- .../pending_db_world/rev_1629981420936961816.sql | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1629981420936961816.sql diff --git a/data/sql/updates/pending_db_world/rev_1629981420936961816.sql b/data/sql/updates/pending_db_world/rev_1629981420936961816.sql new file mode 100644 index 000000000..a7eae4cbd --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1629981420936961816.sql @@ -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); +