diff options
| author | Keader <keader.android@gmail.com> | 2019-02-20 10:43:42 -0300 |
|---|---|---|
| committer | Keader <keader.android@gmail.com> | 2019-02-20 10:43:42 -0300 |
| commit | 34f83c68e3d880da79b637390b4a8e2e357c5c45 (patch) | |
| tree | d89fb899ae430cf2ee109988041c1b2bbcee966a | |
| parent | a617cc40977b7b019f79a198daebede90c59f5c1 (diff) | |
DB/Spells: Fixed proc of Borrowed Time
It fix proc with mana burn, smite and others spells.
| -rw-r--r-- | sql/updates/world/3.3.5/2019_02_20_01_world.sql | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2019_02_20_01_world.sql b/sql/updates/world/3.3.5/2019_02_20_01_world.sql new file mode 100644 index 00000000000..a772ab36f22 --- /dev/null +++ b/sql/updates/world/3.3.5/2019_02_20_01_world.sql @@ -0,0 +1,4 @@ +-- Borrowed Time +DELETE FROM `spell_proc` WHERE `SpellId`=59891; +INSERT INTO `spell_proc` (`SpellId`, `SchoolMask`, `SpellFamilyName`, `SpellFamilyMask0`, `SpellFamilyMask1`, `SpellFamilyMask2`, `ProcFlags`, `SpellTypeMask`, `SpellPhaseMask`, `HitMask`, `AttributesMask`, `ProcsPerMinute`, `Chance`, `Cooldown`, `Charges`) VALUES +(59891,0,0,0,0,0,0,0,1,0,0,0,0,0,0); |
