From 6b68a987832f1a919e630202fd271119eb950fc5 Mon Sep 17 00:00:00 2001 From: Efymer <79163132+Efymer@users.noreply.github.com> Date: Wed, 1 Sep 2021 14:26:31 +0200 Subject: [PATCH] fix(DB/quest_template_addon): set honored requirement for "Favor Amongst the Brotherhood" quests (#7582) --- .../updates/pending_db_world/rev_1630055966364700300.sql | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1630055966364700300.sql diff --git a/data/sql/updates/pending_db_world/rev_1630055966364700300.sql b/data/sql/updates/pending_db_world/rev_1630055966364700300.sql new file mode 100644 index 000000000..445894c6f --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1630055966364700300.sql @@ -0,0 +1,9 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1630055966364700300'); + +-- Set Honored rep requirement for the following quests: +-- 6645 - [Favor Amongst the Brotherhood, Core Leather] +-- 6646 - [Favor Amongst the Brotherhood, Blood of the Mountain] +-- 6642 - [Favor Amongst the Brotherhood, Dark Iron Ore] +-- 6643 - [Favor Amongst the Brotherhood, Fiery Core] +-- 6644 - [Favor Amongst the Brotherhood, Lava Core] +UPDATE `quest_template_addon` SET `RequiredMinRepValue` = 9000 WHERE `ID` IN ('6645', '6646', '6642', '6643', '6644');