diff options
| author | ariel- <ariel-@users.noreply.github.com> | 2016-10-28 03:15:28 -0300 |
|---|---|---|
| committer | ariel- <ariel-@users.noreply.github.com> | 2016-10-28 03:15:28 -0300 |
| commit | b5ef85d9422e3463f626241f4a14c45f58fd2515 (patch) | |
| tree | 977b27b36b60cae50cafefd52eef3341b2e5031e | |
| parent | 1df8ca7fe3ccd92af6a561c142a2bb06d9565387 (diff) | |
DB/Spell: proc fixes
- Lock and Load: fix startup error due to prev commit
- Entrapment: prevent double proc on traps, causing a DR on the root effect
- Pet Healing: add triggered attr so it procs on spells like Explosive Shot
| -rw-r--r-- | sql/updates/world/3.3.5/2016_10_28_03_world_335.sql | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2016_10_28_03_world_335.sql b/sql/updates/world/3.3.5/2016_10_28_03_world_335.sql new file mode 100644 index 00000000000..df414f4fe11 --- /dev/null +++ b/sql/updates/world/3.3.5/2016_10_28_03_world_335.sql @@ -0,0 +1,8 @@ +-- Lock and Load +UPDATE `spell_proc` SET `SpellPhaseMask`=0x2 WHERE `SpellId`=-56342; + +-- Entrapment +UPDATE `spell_proc` SET `SpellPhaseMask`=0x4 WHERE `SpellId`=-19184; + +-- Pet Healing +UPDATE `spell_proc` SET `AttributesMask`=0x2 WHERE `SpellId`=37381; |
