From f38a08dbffad236996c84cb31b386d4d9fcf61bd Mon Sep 17 00:00:00 2001 From: Apatia <107246426+Apathyxia@users.noreply.github.com> Date: Sat, 4 Jul 2026 22:53:04 +0200 Subject: [PATCH] fix(DB/item_template): Update TotemCategory for multiple totems (#26385) --- data/sql/updates/pending_db_world/totemfix.sql | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 data/sql/updates/pending_db_world/totemfix.sql diff --git a/data/sql/updates/pending_db_world/totemfix.sql b/data/sql/updates/pending_db_world/totemfix.sql new file mode 100644 index 0000000000..b2ee70e57b --- /dev/null +++ b/data/sql/updates/pending_db_world/totemfix.sql @@ -0,0 +1,2 @@ +-- Update TotemCategories for Savage and Hateful totems +UPDATE `item_template` SET `TotemCategory` = 21 WHERE (`entry` IN (42593, 42594, 42595, 42596, 42601, 42606));