diff options
| author | ariel- <ariel-@users.noreply.github.com> | 2016-10-17 02:34:04 -0300 |
|---|---|---|
| committer | ariel- <ariel-@users.noreply.github.com> | 2016-10-17 02:34:04 -0300 |
| commit | c6d77e02860073e40a09cd1c847c73c02299eb29 (patch) | |
| tree | cb2b6a83cdb3684ca64df21f8860d3b724d61181 | |
| parent | 531904afffa010a07ed866b2ae76d97ef1f935e4 (diff) | |
DB/Spell: some proc fixes
- Glyph of Totem of Wrath should proc from triggered casts (fixes aura not applied when summoning through Call of the xx spells)
- Fix Deadly brew not proccing at all
- Fix Light's Beacon not healing with Holy Shock
by xjose93
| -rw-r--r-- | sql/updates/world/3.3.5/2016_10_17_03_world_335.sql | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2016_10_17_03_world_335.sql b/sql/updates/world/3.3.5/2016_10_17_03_world_335.sql new file mode 100644 index 00000000000..2965f05aa72 --- /dev/null +++ b/sql/updates/world/3.3.5/2016_10_17_03_world_335.sql @@ -0,0 +1,4 @@ +UPDATE `spell_proc` SET `AttributesMask`=`AttributesMask`|0x2 WHERE `SpellId` IN (63280, -51625); +DELETE FROM `spell_proc` WHERE `SpellId`=53651; +INSERT INTO `spell_proc` (`SpellId`, `SchoolMask`, `SpellFamilyName`, `SpellFamilyMask0`, `SpellFamilyMask1`, `SpellFamilyMask2`, `ProcFlags`, `SpellTypeMask`, `SpellPhaseMask`, `HitMask`, `AttributesMask`, `ProcsPerMinute`, `Chance`, `Cooldown`, `Charges`) VALUES +(53651, 0, 0, 0x00000000, 0x00000000, 0x00000000, 0x0, 0x2, 0x0, 0x0, 0x2, 0, 0, 0, 0); -- Light's Beacon |
