diff options
author | tobmaps <spambot42@yandex.ru> | 2011-05-12 04:44:57 +0700 |
---|---|---|
committer | tobmaps <spambot42@yandex.ru> | 2011-05-12 04:44:57 +0700 |
commit | da8b45ac90a37915ed20cb64a0b67b64bd174028 (patch) | |
tree | 370512667540eb7fa77f3482f6e0bda2fa1bfba0 | |
parent | 6d06eab566c7d72c879aa019bfff832d15e62b7a (diff) |
Core/Spells: Fix Hot Steak proc from Living Bomb explode
-rw-r--r-- | sql/base/world_database.sql | 6 | ||||
-rw-r--r-- | sql/updates/world/2011_05_11_09_world_spell_proc_event.sql | 1 |
2 files changed, 4 insertions, 3 deletions
diff --git a/sql/base/world_database.sql b/sql/base/world_database.sql index 829d52bd7fb..4c8d7f662e1 100644 --- a/sql/base/world_database.sql +++ b/sql/base/world_database.sql @@ -18896,9 +18896,9 @@ INSERT INTO `spell_proc_event` (`entry`,`SchoolMask`,`SpellFamilyName`,`SpellFam ( 44404, 0x00, 3, 0x20000021, 0x00009000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Missile Barrage (Rank 1) ( 44442, 0x00, 3, 0x00800000, 0x00000040, 0x00000000, 0x00000000, 0x00010000, 0, 0, 1), -- Firestarter (Rank 1) ( 44443, 0x00, 3, 0x00800000, 0x00000040, 0x00000000, 0x00000000, 0x00010000, 0, 0, 1), -- Firestarter (Rank 2) -( 44445, 0x00, 3, 0x00000013, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Hot Streak (Rank 1) -( 44446, 0x00, 3, 0x00000013, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Hot Streak (Rank 2) -( 44448, 0x00, 3, 0x00000013, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Hot Streak (Rank 3) +( 44445, 0x00, 3, 0x00000013, 0x00011000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Hot Streak (Rank 1) +( 44446, 0x00, 3, 0x00000013, 0x00011000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Hot Streak (Rank 2) +( 44448, 0x00, 3, 0x00000013, 0x00011000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Hot Streak (Rank 3) ( 44449, 0x00, 3, 0x20E21277, 0x00019048, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Burnout (Rank 1) ( 44469, 0x00, 3, 0x20E21277, 0x00019048, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Burnout (Rank 2) ( 44470, 0x00, 3, 0x20E21277, 0x00019048, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Burnout (Rank 3) diff --git a/sql/updates/world/2011_05_11_09_world_spell_proc_event.sql b/sql/updates/world/2011_05_11_09_world_spell_proc_event.sql new file mode 100644 index 00000000000..aaeb2221e9b --- /dev/null +++ b/sql/updates/world/2011_05_11_09_world_spell_proc_event.sql @@ -0,0 +1 @@ +UPDATE `spell_proc_event` SET `SpellFamilyMask1`=`SpellFamilyMask1`|0x00010000 WHERE `entry` IN (44445,44446,44448); |