diff options
author | win32 <none@none> | 2009-12-21 18:05:51 +0200 |
---|---|---|
committer | win32 <none@none> | 2009-12-21 18:05:51 +0200 |
commit | 3ab7f4093243e2aa0094a418f73b6cdfd30152a9 (patch) | |
tree | f4f0617b18002ac6c8dbcf159aab9fd338ebc1b8 | |
parent | 636018ca7e5a76edc9f39a0672861e630374ec07 (diff) |
Add spell proc for Glyph of Seal of Command
--HG--
branch : trunk
-rw-r--r-- | sql/updates/6691_world_spell_proc_event.sql | 5 | ||||
-rw-r--r-- | sql/world.sql | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/sql/updates/6691_world_spell_proc_event.sql b/sql/updates/6691_world_spell_proc_event.sql new file mode 100644 index 00000000000..f76c841623f --- /dev/null +++ b/sql/updates/6691_world_spell_proc_event.sql @@ -0,0 +1,5 @@ +-- Glyph of Seal of Command +DELETE FROM `spell_proc_event` WHERE `entry` IN (54925); +INSERT INTO `spell_proc_event` +(`entry`,`SchoolMask`,`SpellFamilyName`,`SpellFamilyMask0`,`SpellFamilyMask1`,`SpellFamilyMask2`,`procFlags`,`procEx`,`ppmRate`,`CustomChance`,`Cooldown`) VALUES +(54925,0x02,10,0x00000000,0x00000208,0x00000000,0x00000000,0x00000000,0,0,0);
\ No newline at end of file diff --git a/sql/world.sql b/sql/world.sql index 3b4f11caf73..85cca5958d8 100644 --- a/sql/world.sql +++ b/sql/world.sql @@ -6668,7 +6668,8 @@ INSERT INTO `spell_proc_event` (`entry`,`SchoolMask`,`SpellFamilyName`,`SpellFam ( 67353, 0x00, 7, 0x00008000, 0x00100500, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- uncommented ( 57989, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000000, 0, 0, 0), -- uncommented ( 65661, 0x00, 15, 0x00400010, 0x20020004, 0x00000000, 0x00000010, 0x00000000, 0, 100, 0), -- uncommented -( 53601, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x000A02A8, 0x00000000, 0, 0, 6); -- Sacred Shield (Rank 1) +( 53601, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x000A02A8, 0x00000000, 0, 0, 6), -- Sacred Shield (Rank 1) +( 54925, 0x02, 10, 0x00000000, 0x00000208, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0); -- Glyph of Seal of Command /*!40000 ALTER TABLE `spell_proc_event` ENABLE KEYS */; UNLOCK TABLES; |