mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-13 09:17:18 +00:00
fix(DB/access_requirement): Add missing quest_failed_text #3804
This commit is contained in:
@@ -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;
|
||||
Reference in New Issue
Block a user