diff options
author | tobmaps <spambot42@yandex.ru> | 2011-07-21 20:58:34 +0700 |
---|---|---|
committer | tobmaps <spambot42@yandex.ru> | 2011-07-21 20:58:34 +0700 |
commit | 6f30f1617745fcf87a601d49763e8d2ab1fe81de (patch) | |
tree | 7edc450fb59519a56efc04d135c1438073fd42c3 | |
parent | dd2990e2a766db0dfbe78182c8175c1a59650708 (diff) |
Core/Spells: talent Judgements of the Pure should proc also on absorbs
-rw-r--r-- | sql/base/world_database.sql | 10 | ||||
-rw-r--r-- | sql/updates/world/2011_07_21_01_world_spell_proc_event.sql | 1 |
2 files changed, 6 insertions, 5 deletions
diff --git a/sql/base/world_database.sql b/sql/base/world_database.sql index a920284caf4..387e644fbff 100644 --- a/sql/base/world_database.sql +++ b/sql/base/world_database.sql @@ -19132,16 +19132,16 @@ INSERT INTO `spell_proc_event` (`entry`,`SchoolMask`,`SpellFamilyName`,`SpellFam ( 53569, 0x00, 10, 0x40200000, 0x00010000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Infusion of Light (Rank 1) ( 53576, 0x00, 10, 0x40200000, 0x00010000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Infusion of Light (Rank 2) ( 53646, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Demonic Pact (Rank 1) -( 53671, 0x00, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00040000, 0, 0, 0), -- Judgements of the Pure (Rank 1) -( 53673, 0x00, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00040000, 0, 0, 0), -- Judgements of the Pure (Rank 2) +( 53671, 0x00, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Judgements of the Pure (Rank 1) +( 53673, 0x00, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Judgements of the Pure (Rank 2) ( 53695, 0x00, 10, 0x00800000, 0x00000000, 0x00000008, 0x00000000, 0x00000000, 0, 0, 0), -- Judgements of the Just (Rank 1) ( 53696, 0x00, 10, 0x00800000, 0x00000000, 0x00000008, 0x00000000, 0x00000000, 0, 0, 0), -- Judgements of the Just (Rank 2) ( 53709, 0x02, 10, 0x00004000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Shield of the templar ( 53710, 0x02, 10, 0x00004000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Shield of the templar ( 53711, 0x02, 10, 0x00004000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Shield of the templar -( 54151, 0x00, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00040000, 0, 0, 0), -- Judgements of the Pure (Rank 3) -( 54154, 0x00, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00040000, 0, 0, 0), -- Judgements of the Pure (Rank 4) -( 54155, 0x00, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00040000, 0, 0, 0), -- Judgements of the Pure (Rank 5) +( 54151, 0x00, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Judgements of the Pure (Rank 3) +( 54154, 0x00, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Judgements of the Pure (Rank 4) +( 54155, 0x00, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Judgements of the Pure (Rank 5) ( 54278, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Empowered Imp ( 54486, 0x00, 0, 0x20000021, 0x00009000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Missile Barrage (Rank 2) ( 54488, 0x00, 0, 0x20000021, 0x00009000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Missile Barrage (Rank 3) diff --git a/sql/updates/world/2011_07_21_01_world_spell_proc_event.sql b/sql/updates/world/2011_07_21_01_world_spell_proc_event.sql new file mode 100644 index 00000000000..fa372615617 --- /dev/null +++ b/sql/updates/world/2011_07_21_01_world_spell_proc_event.sql @@ -0,0 +1 @@ +UPDATE `spell_proc_event` SET `procEx` = 0 WHERE `entry` IN (53671,53673,54151,54154,54155); |