Core/Maps:

* Scarlet Monastry will now properly scale down to normal difficulty when trying to enter the instance on heroic difficulty
* removed deprecated quest text requirement from access_requirement
* added new access_requirement field to specifiy if a dungeon is only available for heroic difficulty
* added heroic exclusive access_requirement entries for Zul'Gurub, Zul'Aman, End Time, Well of Eternity and Hour of Twilight
* Players will no longer be able to enter dungeons when a encounter is in progress
This commit is contained in:
Ovahlord
2019-03-30 16:43:53 +01:00
parent 5389375bab
commit c991d4bfe7
9 changed files with 60 additions and 47 deletions

View File

@@ -0,0 +1,10 @@
UPDATE `access_requirement` SET `quest_failed_text`= '0';
ALTER TABLE `access_requirement` CHANGE `quest_failed_text` `heroic_exclusive` TINYINT(1) DEFAULT 0 NULL;
DELETE FROM `access_requirement` WHERE `mapId` IN (859, 568, 938, 939, 940) AND `difficulty`= 0;
INSERT INTO `access_requirement` (`mapId`, `difficulty`, `heroic_exclusive`, `comment`) VALUES
(859, 0, 1, 'Zul''Gurub - Heroic Exclusive'),
(568, 0, 1, 'Zul''Aman - Heroic Exclusive'),
(938, 0, 1, 'End Time - Heroic Exclusive'),
(939, 0, 1, 'Well of Eternity - Heroic Exclusive'),
(940, 0, 1, 'Hour of Twilight - Heroic Exclusive');