diff options
| author | ariel- <ariel-@users.noreply.github.com> | 2016-10-26 23:14:13 -0300 | 
|---|---|---|
| committer | ariel- <ariel-@users.noreply.github.com> | 2016-10-26 23:27:10 -0300 | 
| commit | 92561a274a87035fabbd888c4088394abbf794f8 (patch) | |
| tree | b7ef4e4e68e51566f85c4b34bb43649814d4a0a4 | |
| parent | 5278577587159be85f993399baadb2809d4c94e7 (diff) | |
DB/Spell: Proc fixes
- Fix Fel Synergy. Closes #18109
- Fix Entrapment. Closes #18110
| -rw-r--r-- | sql/updates/world/3.3.5/2016_10_27_01_world_335.sql | 7 | 
1 files changed, 7 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2016_10_27_01_world_335.sql b/sql/updates/world/3.3.5/2016_10_27_01_world_335.sql new file mode 100644 index 00000000000..2814e5606e2 --- /dev/null +++ b/sql/updates/world/3.3.5/2016_10_27_01_world_335.sql @@ -0,0 +1,7 @@ +-- Fel Synergy +DELETE FROM `spell_proc` WHERE `SpellId`=-47230; +INSERT INTO `spell_proc` (`SpellId`, `SchoolMask`, `SpellFamilyName`, `SpellFamilyMask0`, `SpellFamilyMask1`, `SpellFamilyMask2`, `ProcFlags`, `SpellTypeMask`, `SpellPhaseMask`, `HitMask`, `AttributesMask`, `ProcsPerMinute`, `Chance`, `Cooldown`, `Charges`) VALUES +(-47230, 0, 0, 0x00000000, 0x00000000, 0x00000000, 0, 0x1, 0x2, 0x0, 0x2, 0, 0, 0, 0); + +-- Entrapment +UPDATE `spell_proc` SET `AttributesMask`=0x2 WHERE `SpellId`=-19184;  | 
