diff options
Diffstat (limited to 'sql')
| -rw-r--r-- | sql/base/world_database.sql | 2 | ||||
| -rw-r--r-- | sql/updates/9447_world_spell_script_names.sql | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/sql/base/world_database.sql b/sql/base/world_database.sql index d44b6641b06..eb34af2f546 100644 --- a/sql/base/world_database.sql +++ b/sql/base/world_database.sql @@ -14747,6 +14747,7 @@ INSERT INTO `spell_script_names` (`spell_id`,`ScriptName`) VALUES ( 12975,'spell_warr_last_stand'), -- paladin ( 20425, 'spell_pal_judgement_of_command'), +( 63521, 'spell_pal_guarded_by_the_light'), (-20473, 'spell_pal_holy_shock'), ( 37877, 'spell_pal_blessing_of_faith'), -- hunter @@ -14781,7 +14782,6 @@ INSERT INTO `spell_script_names` (`spell_id`,`ScriptName`) VALUES ( -6201, 'spell_warl_create_healthstone'), ( 47193, 'spell_warl_demonic_empowerment'), ( 47422, 'spell_warl_everlasting_affliction'), -( 63521, 'spell_warl_guarded_by_the_light'), -- druid ( 54846, 'spell_dru_glyph_of_starfire'); /*!40000 ALTER TABLE `spell_script_names` ENABLE KEYS */; diff --git a/sql/updates/9447_world_spell_script_names.sql b/sql/updates/9447_world_spell_script_names.sql new file mode 100644 index 00000000000..da7930b61c3 --- /dev/null +++ b/sql/updates/9447_world_spell_script_names.sql @@ -0,0 +1,3 @@ +DELETE FROM `spell_script_names` WHERE `spell_id`=20425 AND `ScriptName`='spell_warl_judgement_of_command'; +DELETE FROM `spell_script_names` WHERE `spell_id`=20425 AND `ScriptName`='spell_pal_judgement_of_command'; +INSERT INTO `spell_script_names` (`spell_id`,`ScriptName`) VALUES (20425, 'spell_pal_judgement_of_command'); |
