diff options
| author | Anubisss <none@none> | 2010-05-19 19:17:49 +0200 |
|---|---|---|
| committer | Anubisss <none@none> | 2010-05-19 19:17:49 +0200 |
| commit | a04809437bdc0f5ae0865fdc6b1b43f542cdfae7 (patch) | |
| tree | d357e83a59686669d6269fb92a3c78b7c78a27f2 | |
| parent | a5c7efa0eee1bd61cfdd91b039ef03455b5727da (diff) | |
Fix the bug that offhand's crit of spell Mutilate don't proc spell Seal Fate.
Fixes issue #218.
--HG--
branch : trunk
| -rw-r--r-- | sql/updates/8239_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/8239_world_spell_proc_event.sql b/sql/updates/8239_world_spell_proc_event.sql new file mode 100644 index 00000000000..3ac8f145f87 --- /dev/null +++ b/sql/updates/8239_world_spell_proc_event.sql @@ -0,0 +1 @@ +UPDATE spell_proc_event SET SpellFamilyMask1 = 0x00000006 WHERE entry IN (14186, 14190, 14193, 14194, 14195); -- Seal Fate diff --git a/sql/world.sql b/sql/world.sql index fd399fe4cbe..afff9dd78e4 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, 0x00000002, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Seal Fate (Rank 1) -( 14190, 0x00, 8, 0x40800508, 0x00000002, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Seal Fate (Rank 2) -( 14193, 0x00, 8, 0x40800508, 0x00000002, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Seal Fate (Rank 3) -( 14194, 0x00, 8, 0x40800508, 0x00000002, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Seal Fate (Rank 4) -( 14195, 0x00, 8, 0x40800508, 0x00000002, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Seal Fate (Rank 5) +( 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) ( 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) |
