From b3cc23a6d46a1847b687cc4d2959816adbf22cc6 Mon Sep 17 00:00:00 2001 From: Ovahlord Date: Fri, 12 Mar 2021 18:45:25 +0100 Subject: [PATCH] DB/Spells: Echo of Light will now also be able to proc from triggered spells and added spell family flags to the proc entry to avoid unwanted behavior --- sql/updates/world/4.3.4/2021_03_12_01_world.sql | 1 + 1 file changed, 1 insertion(+) create mode 100644 sql/updates/world/4.3.4/2021_03_12_01_world.sql diff --git a/sql/updates/world/4.3.4/2021_03_12_01_world.sql b/sql/updates/world/4.3.4/2021_03_12_01_world.sql new file mode 100644 index 00000000000..73c04e45828 --- /dev/null +++ b/sql/updates/world/4.3.4/2021_03_12_01_world.sql @@ -0,0 +1 @@ +UPDATE `spell_proc` SET `SpellFamilyMask0`= 0x200 | 0x400 | 0x800 | 0x1000 | 0x1000000 | 0x8000000 | 0x10000000, `SpellFamilyMask1`= 0x4, `SpellFamilyMask2`= 0x4 | 0x1000,`AttributesMask`= 0x2 WHERE `SpellId`= 77485;