From 80b6016528b7ccaf36bb56aa45bb51dc899293d8 Mon Sep 17 00:00:00 2001 From: Lilliandris <144048412+lilliandris@users.noreply.github.com> Date: Tue, 16 Jun 2026 20:03:01 +0200 Subject: [PATCH] fix(DB/Hunter): Dust Cloud debuff not removed after first miss (#26225) Co-authored-by: blinkysc --- data/sql/updates/pending_db_world/rev_1781559665924959595.sql | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1781559665924959595.sql diff --git a/data/sql/updates/pending_db_world/rev_1781559665924959595.sql b/data/sql/updates/pending_db_world/rev_1781559665924959595.sql new file mode 100644 index 0000000000..5705684e98 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1781559665924959595.sql @@ -0,0 +1,4 @@ +-- Dust Cloud (54404) - remove on the affected unit's first missed melee swing +DELETE FROM `spell_proc` WHERE `SpellId` = 54404; +INSERT INTO `spell_proc` (`SpellId`, `ProcFlags`, `HitMask`, `Chance`, `Charges`) + VALUES (54404, 0x00000004, 0x00000004, 100, 1);