diff options
author | Shauren <none@none> | 2010-09-04 22:58:54 +0200 |
---|---|---|
committer | Shauren <none@none> | 2010-09-04 22:58:54 +0200 |
commit | b4b8acf457e2eb6f7ac8dc3bb3aaaaf1e77df268 (patch) | |
tree | 6c8f898078f5cd5e7ddbceae0a3e57f82a8bcd1f | |
parent | 2dae0236494f2dbb5858700454b74e8dded794dc (diff) |
Core/Spells: Fixed Rune of Cinderglacier removal
Closes issue #2105.
--HG--
branch : trunk
-rw-r--r-- | sql/base/world_database.sql | 1 | ||||
-rw-r--r-- | sql/updates/9764_world_spell_proc_event.sql | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/sql/base/world_database.sql b/sql/base/world_database.sql index 8b7682b148b..fb23cb81998 100644 --- a/sql/base/world_database.sql +++ b/sql/base/world_database.sql @@ -19102,6 +19102,7 @@ INSERT INTO `spell_proc_event` (`entry`,`SchoolMask`,`SpellFamilyName`,`SpellFam ( 56636, 0x00, 4, 0x00000020, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 6), -- Taste for Blood (Rank 1) ( 56637, 0x00, 4, 0x00000020, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 6), -- Taste for Blood (Rank 2) ( 56638, 0x00, 4, 0x00000020, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 6), -- Taste for Blood (Rank 3) +( 53386, 0x30, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0); -- Rune of Cinderglacier ( 56375, 0x00, 3, 0x01000000, 0x00000000, 0x00000000, 0x00010000, 0x00000000, 0, 0, 0), -- Glyphs of Polymorph ( 54639, 0x00, 15, 0x00400000, 0x00010000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Blood of the north ( 54638, 0x00, 15, 0x00400000, 0x00010000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Blood of the north diff --git a/sql/updates/9764_world_spell_proc_event.sql b/sql/updates/9764_world_spell_proc_event.sql new file mode 100644 index 00000000000..37648ccc21d --- /dev/null +++ b/sql/updates/9764_world_spell_proc_event.sql @@ -0,0 +1,3 @@ +DELETE FROM `spell_proc_event` WHERE `entry`=53386; +INSERT INTO `spell_proc_event` (`entry`,`SchoolMask`,`SpellFamilyName`,`SpellFamilyMask0`,`SpellFamilyMask1`,`SpellFamilyMask2`,`procFlags`,`procEx`,`ppmRate`,`CustomChance`,`Cooldown`) VALUES +(53386,0x30,0,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0,0,0); -- Rune of Cinderglacier |