fix(DB/Creature): move Salvaged Chopper First Aid to action bar slot 6 (#27361)

This commit is contained in:
Andrew 2026-08-28 02:58:44 -03:00 committed by GitHub
parent 4c1fb9079a
commit 4790cb08af
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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);