diff options
| author | Keader <keader.android@gmail.com> | 2018-10-22 11:05:56 -0300 |
|---|---|---|
| committer | Keader <keader.android@gmail.com> | 2018-10-22 11:05:56 -0300 |
| commit | 00f3408d7e9dcba2ee52902048c722286c599920 (patch) | |
| tree | 027b9ec2624289ae8f2f11c025fda804918f3f6f | |
| parent | 3ea3ed348aca3f5aad1509575a0b73a84ad1ea10 (diff) | |
DB/Spells: Fixed wrong proc of Nature's Grasp and Inner Fire with Sap.
| -rw-r--r-- | sql/updates/world/3.3.5/2018_10_22_00_world.sql | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2018_10_22_00_world.sql b/sql/updates/world/3.3.5/2018_10_22_00_world.sql new file mode 100644 index 00000000000..f3205da4eb8 --- /dev/null +++ b/sql/updates/world/3.3.5/2018_10_22_00_world.sql @@ -0,0 +1,5 @@ +-- Nature's Grasp and Inner fire, need proc only with damage. It fix wrong proc with sap. +DELETE FROM `spell_proc` WHERE `SpellId` IN (-16689,-588); +INSERT INTO `spell_proc` (`SpellId`, `SchoolMask`, `SpellFamilyName`, `SpellFamilyMask0`, `SpellFamilyMask1`, `SpellFamilyMask2`, `ProcFlags`, `SpellTypeMask`, `SpellPhaseMask`, `HitMask`, `AttributesMask`, `ProcsPerMinute`, `Chance`, `Cooldown`, `Charges`) VALUES +(-16689,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(-588,0,0,0,0,0,0,1,0,0,0,0,0,0,0); |
