From b4a58ee354aeeaf8c490e413a907bd53b58cf822 Mon Sep 17 00:00:00 2001 From: avarishd <46330494+avarishd@users.noreply.github.com> Date: Fri, 23 May 2025 23:13:09 +0300 Subject: [PATCH] fix(DB/Creature): Captured Totem shouldn't be attackable (#22142) Item: Captured Totem from Quest: The Grimtotem Weapon no longer generates aggro nor can't be attacked --- data/sql/updates/pending_db_world/rev_1747547690190698400.sql | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1747547690190698400.sql diff --git a/data/sql/updates/pending_db_world/rev_1747547690190698400.sql b/data/sql/updates/pending_db_world/rev_1747547690190698400.sql new file mode 100644 index 000000000..a27989bb7 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1747547690190698400.sql @@ -0,0 +1,2 @@ +-- Captured Totem - NON_ATTACKABLE +UPDATE `creature_template` SET `unit_flags` = `unit_flags`|2 WHERE (`entry` = 23811);