diff options
author | Rival <dev.rival@mail.ru> | 2016-08-14 15:58:34 +0300 |
---|---|---|
committer | Shin <borzifrancesco@gmail.com> | 2016-08-14 14:58:34 +0200 |
commit | 293818a8f8a74cff34b64c91d9201a75924c3b8b (patch) | |
tree | caa2b68b25638bf09268a58ddbd3285b7dd13808 /data | |
parent | 90abbcd5d843bc6a4405451711a89b0e66fad55a (diff) |
Core/Spells: Fix Hellscream's Warsong & Strength of Wrynn buffs. (#87)
Diffstat (limited to 'data')
-rw-r--r-- | data/sql/updates/2016_08_14_01.sql | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/data/sql/updates/2016_08_14_01.sql b/data/sql/updates/2016_08_14_01.sql new file mode 100644 index 0000000000..b914dd4022 --- /dev/null +++ b/data/sql/updates/2016_08_14_01.sql @@ -0,0 +1,8 @@ +ALTER TABLE world_db_version CHANGE COLUMN 2016_08_14_00 2016_08_14_01 bit; + +-- Hellscream's Warsong +UPDATE `spell_area` SET `spell`='73822' +WHERE `spell`='73818' AND `area`='4812' AND `quest_start`='0' AND `aura_spell`='0' AND `racemask`='690' AND `gender`='2'; +-- Strength of Wrynn +UPDATE `spell_area` SET `spell`='73828' +WHERE `spell`='73824' AND `area`='4812' AND `quest_start`='0' AND `aura_spell`='0' AND `racemask`='1101' AND `gender`='2'; |