From 4790cb08af9224980d43c950c06625bbf6a43732 Mon Sep 17 00:00:00 2001 From: Andrew <47818697+Nyeriah@users.noreply.github.com> Date: Fri, 28 Aug 2026 02:58:44 -0300 Subject: [PATCH] fix(DB/Creature): move Salvaged Chopper First Aid to action bar slot 6 (#27361) --- .../updates/pending_db_world/rev_1787881140119275500.sql | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1787881140119275500.sql diff --git a/data/sql/updates/pending_db_world/rev_1787881140119275500.sql b/data/sql/updates/pending_db_world/rev_1787881140119275500.sql new file mode 100644 index 000000000..a6e3b9446 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1787881140119275500.sql @@ -0,0 +1,8 @@ +-- Ulduar: Salvaged Chopper action bar layout, sniff-verified. +-- Grab Pyrite (67372) sits at position 4, position 5 is empty, First Aid (64660) at position 6. +DELETE FROM `creature_template_spell` WHERE `CreatureID` IN (33062, 34045) AND `Index` IN (3, 4, 5); +INSERT INTO `creature_template_spell` (`CreatureID`, `Index`, `Spell`, `VerifiedBuild`) VALUES +(33062, 3, 67372, 69497), +(33062, 5, 64660, 69497), +(34045, 3, 67372, 69497), +(34045, 5, 64660, 69497);