aboutsummaryrefslogtreecommitdiff
path: root/sql/updates
diff options
context:
space:
mode:
authorXanadu <none@none>2010-09-27 20:30:47 +0200
committerXanadu <none@none>2010-09-27 20:30:47 +0200
commit781592d63a393084500f2d668936e31ef120eae2 (patch)
treeeb7353980542c64c254cb33df0f4126be327fe74 /sql/updates
parente20c7f0e4dcff07260392220c47f9bd048e0262d (diff)
Core/Spells: * Removed special handling of SPELL_AURA_ABILITY_IGNORE_AURASTATE, now handled by the proc system (again).
* Fixed Fingers of Frost buff display. Closes issue #3324. --HG-- branch : trunk
Diffstat (limited to 'sql/updates')
-rw-r--r--sql/updates/10091_world_spell_proc_event.sql7
1 files changed, 7 insertions, 0 deletions
diff --git a/sql/updates/10091_world_spell_proc_event.sql b/sql/updates/10091_world_spell_proc_event.sql
new file mode 100644
index 00000000000..02d88bcfc4e
--- /dev/null
+++ b/sql/updates/10091_world_spell_proc_event.sql
@@ -0,0 +1,7 @@
+-- Taste for Blood, Overpower Ready!, Sudden Death and Fingers of Frost proc data.
+DELETE FROM `spell_proc_event` WHERE `entry` IN (60503, 68051, 52437, 74396);
+INSERT INTO `spell_proc_event` (`entry`, `SchoolMask`, `SpellFamilyName`, `SpellFamilyMask0`, `SpellFamilyMask1`, `SpellFamilyMask2`, `procFlags`, `procEx`, `ppmRate`, `CustomChance`, `Cooldown`) VALUES
+(60503, 0x01, 4, 0x00000004, 0x00000000, 0x00000000, 0x00000010, 0x00000000, 0, 0, 0),
+(68051, 0x01, 4, 0x00000004, 0x00000000, 0x00000000, 0x00000010, 0x00000000, 0, 0, 0),
+(52437, 0x01, 4, 0x20000000, 0x00000000, 0x00000000, 0x00000010, 0x00000000, 0, 0, 0),
+(74396, 0x10, 3, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0x00000003, 0, 0, 0);