fix(DB/access_requirement): Add missing quest_failed_text #3804

This commit is contained in:
aradep
2020-12-11 11:47:00 -04:00
committed by GitHub
parent af53598fa2
commit 85c31a13e6

View File

@@ -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;