diff options
author | Shocker <none@none> | 2010-09-08 16:03:05 +0300 |
---|---|---|
committer | Shocker <none@none> | 2010-09-08 16:03:05 +0300 |
commit | 0ea520300ab95457d2b105a7cf00bb0b92c17615 (patch) | |
tree | d1c71864300b18cd5b9f3bda4cbd6f1172f09cd0 | |
parent | cbc7ca8655916c85b34d73830f5d035aea9507c5 (diff) |
Core/Spells: Missing SQL from previous commit regarding PvP Trinket/WOTF shared CD
--HG--
branch : trunk
-rw-r--r-- | sql/base/world_database.sql | 2 | ||||
-rw-r--r-- | sql/updates/9841_world_spell_script_names.sql | 4 |
2 files changed, 6 insertions, 0 deletions
diff --git a/sql/base/world_database.sql b/sql/base/world_database.sql index c8725d9c2a3..17cff18fce5 100644 --- a/sql/base/world_database.sql +++ b/sql/base/world_database.sql @@ -26728,6 +26728,8 @@ INSERT INTO `spell_script_names` (`spell_id`,`ScriptName`) VALUES ( 70592, 'spell_creature_permanent_feign_death'), ( 70628, 'spell_creature_permanent_feign_death'), ( 74490, 'spell_creature_permanent_feign_death'), +( 72752, 'spell_pvp_trinket_wotf_shared_cd'), +( 72757, 'spell_pvp_trinket_wotf_shared_cd'), -- instances ( 69057, 'spell_marrowgar_bone_spike_graveyard'), ( 69140, 'spell_marrowgar_coldflame'), diff --git a/sql/updates/9841_world_spell_script_names.sql b/sql/updates/9841_world_spell_script_names.sql new file mode 100644 index 00000000000..5411994c43d --- /dev/null +++ b/sql/updates/9841_world_spell_script_names.sql @@ -0,0 +1,4 @@ +DELETE FROM `spell_script_names` WHERE `spell_id` IN(72752,72757); +INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES +('72752', 'spell_pvp_trinket_wotf_shared_cd'), +('72757', 'spell_pvp_trinket_wotf_shared_cd'); |