diff options
-rw-r--r-- | sql/base/world_database.sql | 6 | ||||
-rw-r--r-- | sql/updates/9681_world_spell_proc_event.sql | 5 |
2 files changed, 8 insertions, 3 deletions
diff --git a/sql/base/world_database.sql b/sql/base/world_database.sql index c492b94cf11..ccfe15da7ee 100644 --- a/sql/base/world_database.sql +++ b/sql/base/world_database.sql @@ -6717,9 +6717,9 @@ INSERT INTO `spell_proc_event` (`entry`,`SchoolMask`,`SpellFamilyName`,`SpellFam ( 29977, 0x00, 3, 0x00C00017, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Combustion ( 30003, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000800, 0, 0, 0), -- Sheen of Zanza ( 30160, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Elemental Devastation (Rank 1) -( 30293, 0x00, 5, 0x00000381, 0x000200C0, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Soul Leech (Rank 1) -( 30295, 0x00, 5, 0x00000381, 0x000200C0, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Soul Leech (Rank 2) -( 30296, 0x00, 5, 0x00000381, 0x000200C0, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Soul Leech (Rank 3) +( 30293, 0x00, 5, 0x00000381, 0x008200C0, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Soul Leech (Rank 1) +( 30295, 0x00, 5, 0x00000381, 0x008200C0, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Soul Leech (Rank 2) +( 30296, 0x00, 5, 0x00000381, 0x008200C0, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Soul Leech (Rank 3) ( 30299, 0x7E, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Nether Protection (Rank 1) ( 30301, 0x7E, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Nether Protection (Rank 2) ( 30302, 0x7E, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Nether Protection (Rank 3) diff --git a/sql/updates/9681_world_spell_proc_event.sql b/sql/updates/9681_world_spell_proc_event.sql new file mode 100644 index 00000000000..9b2691a0d16 --- /dev/null +++ b/sql/updates/9681_world_spell_proc_event.sql @@ -0,0 +1,5 @@ +DELETE FROM `spell_proc_event` WHERE `entry` in (30293,30295,30296); +INSERT INTO `spell_proc_event` (`entry`,`SchoolMask`,`SpellFamilyName`,`SpellFamilyMask0`,`SpellFamilyMask1`,`SpellFamilyMask2`,`procFlags`,`procEx`,`ppmRate`,`CustomChance`,`Cooldown`) VALUES +( 30293, 0x00, 5, 0x00000381, 0x008200C0, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), +( 30295, 0x00, 5, 0x00000381, 0x008200C0, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), +( 30296, 0x00, 5, 0x00000381, 0x008200C0, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0); |