diff options
author | Rushor <Rushor@users.noreply.github.com> | 2020-03-25 16:39:19 +0100 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2021-12-30 21:01:16 +0100 |
commit | edb68b7aeb070a340471e739e58b8fdcb66abf35 (patch) | |
tree | 18e5d15459591736c9d8a1a9e8b650a62df88d77 | |
parent | 37543109f67a655cc4c08668d49c26ec16fc31c1 (diff) |
DB/Spell: Fix the proc of the spell parry used in the quest "The Hunter and the Prince"
Closes #22577
(cherry picked from commit 3bd903a04fbb8fedc46b5f2184082f2511f7f67e)
-rw-r--r-- | sql/updates/world/master/2021_12_30_02_world_2020_03_25_00_world.sql | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sql/updates/world/master/2021_12_30_02_world_2020_03_25_00_world.sql b/sql/updates/world/master/2021_12_30_02_world_2020_03_25_00_world.sql new file mode 100644 index 00000000000..613674050d9 --- /dev/null +++ b/sql/updates/world/master/2021_12_30_02_world_2020_03_25_00_world.sql @@ -0,0 +1,4 @@ +-- +DELETE FROM `spell_proc` WHERE `SpellId` = 60617; +INSERT INTO `spell_proc` (`SpellId`, `SchoolMask`, `SpellFamilyName`, `SpellFamilyMask0`, `SpellFamilyMask1`, `SpellFamilyMask2`, `ProcFlags`, `SpellTypeMask`, `SpellPhaseMask`, `HitMask`, `AttributesMask`, `ProcsPerMinute`, `Chance`, `Cooldown`, `Charges`) VALUES +(60617, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, 0, 0); |