diff options
author | Anubisss <none@none> | 2010-05-19 22:08:44 +0200 |
---|---|---|
committer | Anubisss <none@none> | 2010-05-19 22:08:44 +0200 |
commit | 27bb6a96d24774c40e68616cf6fd9df8f3127232 (patch) | |
tree | e65cde8fe2c8551cb572a3e41c6f114ab10b9267 | |
parent | a5840e9286de8e610b3e4f01438e1e7117b6de3a (diff) |
Fix the bug that talent Seal Fate gives 5 combo points(instead of 3) if mainhand _and_ offhand crits with spell Mutilate.
Idea by Alez2005, thanks for it.
--HG--
branch : trunk
-rw-r--r-- | sql/updates/8241_world_spell_proc_event.sql | 1 | ||||
-rw-r--r-- | sql/world.sql | 10 |
2 files changed, 6 insertions, 5 deletions
diff --git a/sql/updates/8241_world_spell_proc_event.sql b/sql/updates/8241_world_spell_proc_event.sql new file mode 100644 index 00000000000..9508dfc7f51 --- /dev/null +++ b/sql/updates/8241_world_spell_proc_event.sql @@ -0,0 +1 @@ +UPDATE spell_proc_event SET Cooldown = 1 WHERE entry IN (14186, 14190, 14193, 14194, 14195); -- Seal Fate diff --git a/sql/world.sql b/sql/world.sql index afff9dd78e4..2a3ba2e77cc 100644 --- a/sql/world.sql +++ b/sql/world.sql @@ -6261,11 +6261,11 @@ INSERT INTO `spell_proc_event` (`entry`,`SchoolMask`,`SpellFamilyName`,`SpellFam ( 14156, 0x00, 8, 0x003E0000, 0x80000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Ruthlessness (Rank 1) ( 14160, 0x00, 8, 0x003E0000, 0x80000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Ruthlessness (Rank 2) ( 14161, 0x00, 8, 0x003E0000, 0x80000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Ruthlessness (Rank 3) -( 14186, 0x00, 8, 0x40800508, 0x00000006, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Seal Fate (Rank 1) -( 14190, 0x00, 8, 0x40800508, 0x00000006, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Seal Fate (Rank 2) -( 14193, 0x00, 8, 0x40800508, 0x00000006, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Seal Fate (Rank 3) -( 14194, 0x00, 8, 0x40800508, 0x00000006, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Seal Fate (Rank 4) -( 14195, 0x00, 8, 0x40800508, 0x00000006, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Seal Fate (Rank 5) +( 14186, 0x00, 8, 0x40800508, 0x00000006, 0x00000000, 0x00000000, 0x00000002, 0, 0, 1), -- Seal Fate (Rank 1) +( 14190, 0x00, 8, 0x40800508, 0x00000006, 0x00000000, 0x00000000, 0x00000002, 0, 0, 1), -- Seal Fate (Rank 2) +( 14193, 0x00, 8, 0x40800508, 0x00000006, 0x00000000, 0x00000000, 0x00000002, 0, 0, 1), -- Seal Fate (Rank 3) +( 14194, 0x00, 8, 0x40800508, 0x00000006, 0x00000000, 0x00000000, 0x00000002, 0, 0, 1), -- Seal Fate (Rank 4) +( 14195, 0x00, 8, 0x40800508, 0x00000006, 0x00000000, 0x00000000, 0x00000002, 0, 0, 1), -- Seal Fate (Rank 5) ( 14531, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Martyrdom (Rank 1) ( 14774, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Martyrdom (Rank 2) ( 14892, 0x00, 6, 0x10001E00, 0x00010004, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Inspiration (Rank 1) |