From e8077540215250d5d73641dd405acfceb3207a74 Mon Sep 17 00:00:00 2001 From: Kitzunu <24550914+Kitzunu@users.noreply.github.com> Date: Wed, 29 Nov 2023 22:26:24 +0100 Subject: [PATCH] fix(DB/Quest): Blade Edge Mountains (#17903) * fix(DB/Quest): Bombing Run (11010) should not be available to druids *closes https://github.com/azerothcore/azerothcore-wotlk/issues/17901 * Update rev_1701287014782447000.sql * Update rev_1701287014782447000.sql * closes https://github.com/azerothcore/azerothcore-wotlk/issues/17897 * Update data/sql/updates/pending_db_world/rev_1701287014782447000.sql --- .../sql/updates/pending_db_world/rev_1701287014782447000.sql | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1701287014782447000.sql diff --git a/data/sql/updates/pending_db_world/rev_1701287014782447000.sql b/data/sql/updates/pending_db_world/rev_1701287014782447000.sql new file mode 100644 index 000000000..5665cb0d1 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1701287014782447000.sql @@ -0,0 +1,5 @@ +-- Bombing Run (11010) should not be available to druids +UPDATE `quest_template_addon` SET `AllowableClasses`=`AllowableClasses`|1|2|4|8|16|32|64|128|256 WHERE `ID` = 11010; + +-- Banish More Demons should not be available without honoured reputation +UPDATE `quest_template_addon` SET `RequiredMinRepFaction` = 1030, `RequiredMinRepValue` = 9000 WHERE `ID` = 11026;