fix(DB/Spell): Correct Essence of Wintergrasp zones (#16131)

* Cherry-pick commit (2d5afb36c7)

Co-authored-by: Gildor <521036+Jildor@users.noreply.github.com>
This commit is contained in:
Kitzunu
2023-04-30 01:09:07 +02:00
committed by GitHub
parent 3f40d94232
commit 7af40c8dbe

View File

@@ -0,0 +1,13 @@
--
DELETE FROM `spell_area` WHERE `spell` = 57940 AND `area` IN (495,4277);
INSERT INTO `spell_area` (`spell`, `area`, `quest_start`, `quest_end`, `aura_spell`, `racemask`, `gender`, `autocast`, `quest_start_status`, `quest_end_status`) VALUES
(57940, 495, 0, 0, 0, 0, 2, 1, 0, 0), -- Howling Fjord
(57940, 4277, 0, 0, 0, 0, 2, 1, 0, 0); -- Azjol-Nerub (Dungeon)
-- Remove Essence of Wintergrasp in Instances (must be obtained only in Northrend map and Dungeons)
DELETE FROM `spell_area` WHERE `spell` = 57940 AND `area` IN (
3456, -- Naxxramas
4493, -- The Obsidian Sanctum
4603, -- Vault of Archavon
4273 -- Ulduar
);