diff options
author | tobmaps <spambot42@yandex.ru> | 2011-06-21 03:10:13 +0700 |
---|---|---|
committer | tobmaps <spambot42@yandex.ru> | 2011-06-21 03:10:13 +0700 |
commit | 508fcd3eb3f7e66da9e2d994069176601d48f5ee (patch) | |
tree | 3c01d21cbcebd65c20b4c4c03ed94ef2793f7391 | |
parent | 2df209eb79747919f51df1132b1f4faffbfee2e7 (diff) |
Core/Spells: Fix proc of item Eye of the Broodmother
Closes #530
-rw-r--r-- | sql/base/world_database.sql | 2 | ||||
-rw-r--r-- | sql/updates/world/2011_06_20_05_world_spell_proc_event.sql | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/sql/base/world_database.sql b/sql/base/world_database.sql index 25ec7798ef9..bd71ae81929 100644 --- a/sql/base/world_database.sql +++ b/sql/base/world_database.sql @@ -19247,7 +19247,7 @@ INSERT INTO `spell_proc_event` (`entry`,`SchoolMask`,`SpellFamilyName`,`SpellFam ( 65002, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Bonus Mana Regen ( 65005, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Alacrity of the Elements ( 64999, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 5, 0, 0), -- Meteoric Inspiration -( 65007, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 5, 0, 0), -- Eye of the Broodmother +( 65007, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00014000, 0x00000000, 0, 0, 0), -- Eye of the Broodmother ( 65013, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 45), -- Pyrite Infusion ( 65020, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Mjolnir Runestone ( 65025, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Dark Matter diff --git a/sql/updates/world/2011_06_20_05_world_spell_proc_event.sql b/sql/updates/world/2011_06_20_05_world_spell_proc_event.sql new file mode 100644 index 00000000000..7d1a3d28fb5 --- /dev/null +++ b/sql/updates/world/2011_06_20_05_world_spell_proc_event.sql @@ -0,0 +1 @@ +UPDATE `spell_proc_event` SET `procFlags`=0x14000,`ppmRate`=0 WHERE `entry`=65007; |