mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-02-03 23:57:10 +01:00
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:
10
sql/updates/world/custom/custom_2019_03_30_00_world.sql
Normal file
10
sql/updates/world/custom/custom_2019_03_30_00_world.sql
Normal 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');
|
||||
Reference in New Issue
Block a user