aboutsummaryrefslogtreecommitdiff
path: root/sql/updates
diff options
context:
space:
mode:
authorShauren <none@none>2010-12-03 13:36:14 +0100
committerShauren <none@none>2010-12-03 13:36:14 +0100
commitbd4b47af0e1e63ecf4c2cde2a3422b190d8c5921 (patch)
treebc700f8b2bc157623ba43347ad17d06e68d09d4f /sql/updates
parent1ec9f7b82893c82226a3a9b28bc8a3f5c3e86129 (diff)
Core/SQL: Added missing scriptnames to full sql, fixed typos and corrected delete statement in 10418_world_spell_script_names.sql (no need to reapply)
--HG-- branch : trunk
Diffstat (limited to 'sql/updates')
-rw-r--r--sql/updates/10418_world_spell_script_names.sql5
1 files changed, 3 insertions, 2 deletions
diff --git a/sql/updates/10418_world_spell_script_names.sql b/sql/updates/10418_world_spell_script_names.sql
index d7cdab5c376..321fda46450 100644
--- a/sql/updates/10418_world_spell_script_names.sql
+++ b/sql/updates/10418_world_spell_script_names.sql
@@ -1,2 +1,3 @@
-DELETE FROM spell_script_names WHERE spell_id = 10848;
-INSERT INTO spell_script_names VALUES (10848, "spell_gen_shroud_of_death");
+DELETE FROM spell_script_names WHERE spell_id = 10848 AND `ScriptName`='spell_gen_shroud_of_death';
+INSERT INTO spell_script_names (`spell_id`,`ScriptName`) VALUES
+(10848, 'spell_gen_shroud_of_death');