From 85c31a13e68224bc95cbc2b3f7383551fc82f429 Mon Sep 17 00:00:00 2001 From: aradep <61268368+aradep@users.noreply.github.com> Date: Fri, 11 Dec 2020 11:47:00 -0400 Subject: [PATCH] fix(DB/access_requirement): Add missing quest_failed_text #3804 --- .../pending_db_world/rev_1606625488742709700.sql | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1606625488742709700.sql diff --git a/data/sql/updates/pending_db_world/rev_1606625488742709700.sql b/data/sql/updates/pending_db_world/rev_1606625488742709700.sql new file mode 100644 index 000000000..51f0c7589 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1606625488742709700.sql @@ -0,0 +1,12 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1606625488742709700'); + +/* Add missing messages when attempting to enter an instance without completing the required quest. */ + + /* Magister's Terrace */ + UPDATE `access_requirement` SET `quest_failed_text`='You must complete the quest "Hard to Kill" and be level 70 before entering the Heroic difficulty of the Magisters\' Terrace.' WHERE `mapId`=585 AND `difficulty`=1; + /* Pit of Saron */ + UPDATE `access_requirement` SET `quest_failed_text`='You must complete the quest "Echoes of Tortured Souls" before entering the Pit of Saron.' WHERE `mapId`=658 AND `difficulty`=0; + UPDATE `access_requirement` SET `quest_failed_text`='You must complete the quest "Echoes of Tortured Souls" and be level 80 before entering the Heroic difficulty of the Pit of Saron.' WHERE `mapId`=658 AND `difficulty`=1; + /* Halls of Reflection */ + UPDATE `access_requirement` SET `quest_failed_text`='You must complete the quest "Deliverance from the Pit" before entering the Halls of Reflection.' WHERE `mapId`=668 AND `difficulty`=0; + UPDATE `access_requirement` SET `quest_failed_text`='You must complete the quest "Deliverance from the Pit" and be level 80 before entering the Heroic difficulty of the Halls of Reflection.' WHERE `mapId`=668 AND `difficulty`=1;