From 7bb995f9b36e22df02255d6eb865f6e2c9411e64 Mon Sep 17 00:00:00 2001 From: jakem009 <41561074+jakem009@users.noreply.github.com> Date: Wed, 1 Jul 2026 04:49:43 +1000 Subject: [PATCH] fix(DB/SAI): remove SMARTCAST_COMBAT_MOVE from Frostwing Chimaera Venom Spit (#26061) Co-authored-by: sudlud --- .../updates/pending_db_world/rev_1780373563580000000.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1780373563580000000.sql diff --git a/data/sql/updates/pending_db_world/rev_1780373563580000000.sql b/data/sql/updates/pending_db_world/rev_1780373563580000000.sql new file mode 100644 index 0000000000..8876dddf11 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1780373563580000000.sql @@ -0,0 +1,7 @@ +-- Frostwing Chimaera (24673): remove SMARTCAST_COMBAT_MOVE flag from Venom Spit. +-- This caused SmartAI to treat Venom Spit as the primary attack and stop chasing +-- at ~25 yards (spell range) instead of pursuing to melee. +-- The Vilewing Chimaera (21879) casts the same spell with castFlags = 0 +-- that is the correct value here too. +UPDATE `smart_scripts` SET `action_param2` = 0 +WHERE `entryorguid` = 24673 AND `source_type` = 0 AND `id` = 0 AND `action_type` = 11 AND `action_param1` = 16552;