diff options
author | Aokromes <Aokromes@users.noreply.github.com> | 2023-04-29 12:39:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-29 12:39:33 +0200 |
commit | 2d5afb36c7b3908e47bc3ea3ed27a85ed5cebb07 (patch) | |
tree | cbdc488fd87e6d37aad753fc2e784cc17b55e415 /sql | |
parent | bacb00117a304b281804698120e8c9b64b99144c (diff) |
DB/Spell area: Add Essence of Wintergrasp to missing zones
and remove from raids
by jildor closes #28948
Diffstat (limited to 'sql')
-rw-r--r-- | sql/updates/world/3.3.5/2023_04_29_01_world.sql | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2023_04_29_01_world.sql b/sql/updates/world/3.3.5/2023_04_29_01_world.sql new file mode 100644 index 00000000000..e5b278a4c9a --- /dev/null +++ b/sql/updates/world/3.3.5/2023_04_29_01_world.sql @@ -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 only 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 +); |