From 7f736fb4ba6634639cc6c37f4ffbe8f397d0a3ec Mon Sep 17 00:00:00 2001 From: Andrew <47818697+Nyeriah@users.noreply.github.com> Date: Mon, 25 May 2026 04:47:52 -0300 Subject: [PATCH] fix(DB/Wintergrasp): Phase Whispering Wind during battle (#25961) Co-authored-by: Claude Opus 4.7 (1M context) --- .../updates/pending_db_world/rev_1779666411474117300.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1779666411474117300.sql diff --git a/data/sql/updates/pending_db_world/rev_1779666411474117300.sql b/data/sql/updates/pending_db_world/rev_1779666411474117300.sql new file mode 100644 index 0000000000..0d0e7bc8a5 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1779666411474117300.sql @@ -0,0 +1,7 @@ +-- Hide Whispering Wind (30848) during Wintergrasp battle. +-- Aura 52107 phases the creature out while war is active; the other five +-- small WG elementals (30842, 30845, 30846, 30847, 30849) already have it +-- in creature_template_addon — 30848 was missed. +DELETE FROM `creature_template_addon` WHERE `entry` = 30848; +INSERT INTO `creature_template_addon` (`entry`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `visibilityDistanceType`, `auras`) VALUES +(30848, 0, 0, 0, 1, 0, 0, '52107');