diff options
author | Killyana <morphone1@gmail.com> | 2019-10-22 19:14:29 +0200 |
---|---|---|
committer | Killyana <morphone1@gmail.com> | 2019-10-22 19:14:29 +0200 |
commit | 8dbceb421c9e366cad5763f704d6c004107d47e6 (patch) | |
tree | cda51ec498e1319a48a39232b1abba1f8bd04455 | |
parent | 1e4f0619fd36c0c56812e43302e9e60ff20405b6 (diff) |
DB/Spell: Fix phasing in Foote Steppes (with the correct spell this time)
Ref https://github.com/TrinityCore/TrinityCore/commit/1e4f0619fd36c0c56812e43302e9e60ff20405b6#diff-c64f2de863d9cbe0fc088f5ed7eeeb04R3-R5
-rw-r--r-- | sql/updates/world/3.3.5/2019_10_22_03_world.sql | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2019_10_22_03_world.sql b/sql/updates/world/3.3.5/2019_10_22_03_world.sql new file mode 100644 index 00000000000..1fe3adeee65 --- /dev/null +++ b/sql/updates/world/3.3.5/2019_10_22_03_world.sql @@ -0,0 +1,7 @@ +-- +UPDATE `creature_addon` SET `auras`="60921" WHERE `guid` IN (104811); +DELETE FROM `spell_area` WHERE `spell`=56582 AND `area`=4432; +DELETE FROM `spell_area` WHERE `spell`=60922 AND `area` IN (4432,4431); +INSERT INTO `spell_area` (`spell`, `area`, `quest_start`, `quest_end`, `aura_spell`, `racemask`, `gender`, `autocast`, `quest_start_status`, `quest_end_status`) VALUES +(60922, 4432, 0, 12973, 0, 0, 2, 1, 0, 11), +(60922, 4431, 0, 12973, 0, 0, 2, 1, 0, 11); |