mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-24 02:46:33 +01:00
DB/Items: fixed Throngus' Finger proc
This commit is contained in:
10
sql/updates/world/custom/custom_2018_06_29_00_world.sql
Normal file
10
sql/updates/world/custom/custom_2018_06_29_00_world.sql
Normal file
@@ -0,0 +1,10 @@
|
||||
DELETE FROM `spell_proc` WHERE `SpellId` IN (92207, 92209);
|
||||
|
||||
SET @PROC_FLAG := 0 | 0x00000028;
|
||||
SET @TYPE_MASK := 0 | 0x00000001;
|
||||
SET @PHASE_MASK := 0 | 0x00000000;
|
||||
SET @HIT_MASK := 0 | 0x00000020;
|
||||
|
||||
INSERT INTO `spell_proc` (`SpellId`, `ProcFlags`, `SpellTypeMask`, `SpellPhaseMask`, `HitMask`, `Cooldown`) VALUES
|
||||
(92207, @PROC_FLAG, @TYPE_MASK, @PHASE_MASK, @HIT_MASK, 60000), -- Throngus' Finger
|
||||
(92209, @PROC_FLAG, @TYPE_MASK, @PHASE_MASK, @HIT_MASK, 60000); -- Throngus' Finger
|
||||
Reference in New Issue
Block a user