diff options
| author | kaelima <jeppo_meyer@msn.com> | 2011-05-06 12:53:40 +0200 |
|---|---|---|
| committer | kaelima <jeppo_meyer@msn.com> | 2011-05-06 12:53:40 +0200 |
| commit | 72d08b6e8df630c094ae245a543f3ec35395706a (patch) | |
| tree | 4d0b2284c6b3c4fb9272e6f0e2c015d93d07797e | |
| parent | a51c66d2f8990164ea9b7a3a6839cddbab8c1c8e (diff) | |
Core/Spells: Fix Death Knight T9 Melee 2p Bonus
| -rw-r--r-- | sql/base/world_database.sql | 1 | ||||
| -rw-r--r-- | sql/updates/world/2011_05_06_01_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 80dcb0330e5..5aaae2bcddb 100644 --- a/sql/base/world_database.sql +++ b/sql/base/world_database.sql @@ -19388,6 +19388,7 @@ INSERT INTO `spell_proc_event` (`entry`,`SchoolMask`,`SpellFamilyName`,`SpellFam ( 54925, 0x02, 10, 0x00000000, 0x00000208, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Glyph of Seal of Command ( 63320, 0x00, 5, 0x80040000, 0x00000000, 0x00008000, 0x00000400, 0x00000000, 0, 0, 0), -- Glyph of Life Tap ( 64955, 0x00, 10, 0x00000000, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Item - Paladin T8 Protection Relic +( 67115, 0x00, 15, 0x01400000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Item - Death Knight T9 Melee 2P Bonus ( 67356, 0x08, 7, 0x00000010, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Item - Druid T9 Restoration Relic (Rejuvenation) ( 67361, 0x00, 7, 0x00000002, 0x00000000, 0x00000000, 0x00040000, 0x00000000, 0, 0, 0), -- Item - Druid T9 Balance Relic (Moonfire) ( 67363, 0x00, 10, 0x00000000, 0x80000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 10), -- Item - Paladin T9 Holy Relic (Judgement) diff --git a/sql/updates/world/2011_05_06_01_spell_proc_event.sql b/sql/updates/world/2011_05_06_01_spell_proc_event.sql new file mode 100644 index 00000000000..511d184c178 --- /dev/null +++ b/sql/updates/world/2011_05_06_01_spell_proc_event.sql @@ -0,0 +1,3 @@ +DELETE FROM `spell_proc_event` WHERE `entry`=67115; +INSERT INTO `spell_proc_event` (`entry`, `SchoolMask`, `SpellFamilyName`, `SpellFamilyMask0`, `SpellFamilyMask1`, `SpellFamilyMask2`, `procFlags`, `procEx`, `ppmRate`, `CustomChance`, `Cooldown`) VALUES +(67115,0x00,15,0x01400000,0x00000000,0x00000000,0x00000000,0x00000000,0,0,45); -- Item - Death Knight T9 Melee 2P Bonus |
