aboutsummaryrefslogtreecommitdiff
path: root/sql/updates
diff options
context:
space:
mode:
authorBrian <runningnak3d@gmail.com>2010-01-31 13:04:57 -0700
committerBrian <runningnak3d@gmail.com>2010-01-31 13:04:57 -0700
commita4759e9ce89dcbd8c033d560339a9b8417ab2bf4 (patch)
tree012c1885848849ad97abe673963debdd1b91b8a7 /sql/updates
parent5114a2a3274d1d7afe9f6db5aa2c9d5f41a061c7 (diff)
* Add spell required data for Totem of Wrath ranks 2-4
* Thanks Wladass --HG-- branch : trunk
Diffstat (limited to 'sql/updates')
-rw-r--r--sql/updates/7270_world_spell_required.sql6
1 files changed, 6 insertions, 0 deletions
diff --git a/sql/updates/7270_world_spell_required.sql b/sql/updates/7270_world_spell_required.sql
new file mode 100644
index 00000000000..828e1d22333
--- /dev/null
+++ b/sql/updates/7270_world_spell_required.sql
@@ -0,0 +1,6 @@
+-- adding spell requied for Totem of Wrath-Rank 2,3,4
+DELETE FROM `spell_required` WHERE `spell_id` IN (57720,57721,57722);
+INSERT INTO `spell_required` (`spell_id`,`req_spell`) VALUES
+(57720,30706), -- Totem of Wrath rank 2 (must know rank 1)
+(57721,57720), -- Totem of Wrath rank 3 (must know rank 2)
+(57722,57721); -- Totem of Wrath rank 4 (must know rank 3)