aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorsilinoron <none@none>2010-08-02 13:18:45 -0700
committersilinoron <none@none>2010-08-02 13:18:45 -0700
commite798097ae33a10d3cf26cd422aa06f124de8a3d8 (patch)
treeeb08d4f8406f6b129b5aa2b2ce18ce475c2363a7 /sql
parent891df4eccb0848b9e03b69b4b34728e487d0d405 (diff)
Move a couple of warrior spell dummy effect handlers to spell scripts.
--HG-- branch : trunk
Diffstat (limited to 'sql')
-rw-r--r--sql/base/world_database.sql2
-rw-r--r--sql/updates/9144_world_spell_script_names.sql5
2 files changed, 7 insertions, 0 deletions
diff --git a/sql/base/world_database.sql b/sql/base/world_database.sql
index 713b7d98fb9..e9d3669e8af 100644
--- a/sql/base/world_database.sql
+++ b/sql/base/world_database.sql
@@ -14683,6 +14683,8 @@ LOCK TABLES `spell_script_names` WRITE;
/*!40000 ALTER TABLE `spell_script_names` DISABLE KEYS */;
INSERT INTO `spell_script_names` (`spell_id`,`ScriptName`) VALUES
-- warrior
+( 12975,'spell_warr_last_stand'),
+( 21977,'spell_warr_warriors_wrath'),
-- paladin
( 20425, 'spell_pal_judgement_of_command'),
(-20473, 'spell_pal_holy_shock'),
diff --git a/sql/updates/9144_world_spell_script_names.sql b/sql/updates/9144_world_spell_script_names.sql
new file mode 100644
index 00000000000..ef3c4179713
--- /dev/null
+++ b/sql/updates/9144_world_spell_script_names.sql
@@ -0,0 +1,5 @@
+DELETE FROM `spell_script_names` WHERE `spell_id`=21977 AND `ScriptName`='spell_warr_warriors_wrath';
+DELETE FROM `spell_script_names` WHERE `spell_id`=12975 AND `ScriptName`='spell_warr_last_stand';
+INSERT INTO `spell_script_names` (`spell_id`,`ScriptName`) VALUES
+(12975,'spell_warr_last_stand'),
+(21977,'spell_warr_warriors_wrath');