mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-22 10:05:32 +01:00
*Use heroic_level_min value (if not 0) from table access_requirement for instances with heroic mode.
*Use level_min value if heroic_level_min == 0 for instances with heroic mode. *Correct heroic_level_min value for all instances. --HG-- branch : trunk
This commit is contained in:
61
sql/updates/4745_world_access_requirement.sql
Normal file
61
sql/updates/4745_world_access_requirement.sql
Normal file
@@ -0,0 +1,61 @@
|
||||
-- BC Dungeons --
|
||||
UPDATE `access_requirement` SET `heroic_level_min` = 70 WHERE `id` IN
|
||||
(
|
||||
4404, -- Auchenai Crypts --
|
||||
4405, -- Mana-Tombs --
|
||||
4406, -- Sethekk Halls --
|
||||
4407, -- Shadow Labyrinth --
|
||||
|
||||
4321, -- Old Hillsbrad Foothills --
|
||||
4320, -- The Black Morass --
|
||||
|
||||
4365, -- The Slave Pens --
|
||||
4364, -- The Steamvault --
|
||||
4363, -- The Underbog --
|
||||
|
||||
4150, -- Hellfire Ramparts --
|
||||
4152, -- The Blood Furnace --
|
||||
4151, -- The Shattered Halls --
|
||||
|
||||
4887, -- Magisters' Terrace --
|
||||
|
||||
4468, -- The Arcatraz --
|
||||
4467, -- The Botanica --
|
||||
4469 -- The Mechanar --
|
||||
);
|
||||
|
||||
-- WOTLK Dungeons --
|
||||
UPDATE `access_requirement` SET `heroic_level_min` = 80 WHERE `id` IN
|
||||
(
|
||||
5215, -- Ahn'kahet: The Old Kingdom --
|
||||
5117, -- Azjol-Nerub --
|
||||
|
||||
5150, -- The Culling of Stratholme --
|
||||
|
||||
4998, -- Drak'Tharon Keep --
|
||||
|
||||
5206, -- Gundrak --
|
||||
|
||||
4983, -- The Nexus --
|
||||
5246, -- The Oculus --
|
||||
|
||||
5209, -- The Violet Hold --
|
||||
|
||||
5093, -- Halls of Lightning --
|
||||
5010, -- Halls of Stone --
|
||||
|
||||
4745, -- Utgarde Keep --
|
||||
4747 -- Utgarde Pinnacle --
|
||||
);
|
||||
|
||||
-- WOTLK Raids --
|
||||
UPDATE `access_requirement` SET `heroic_level_min` = 80 WHERE `id` IN
|
||||
(
|
||||
4156, -- Naxxramas --
|
||||
|
||||
5290, -- The Eye of Eternity --
|
||||
|
||||
5243, -- The Obsidian Sanctum --
|
||||
|
||||
5379 -- Ulduar --
|
||||
);
|
||||
Reference in New Issue
Block a user