fix(DB/Creature): Warbear Matriarch vehicle (#23841)

This commit is contained in:
sogladev
2025-11-21 22:36:22 +01:00
committed by GitHub
parent 6bfbcde006
commit 766344e1cd

View File

@@ -0,0 +1,10 @@
--
-- Warbear Matriarch
-- Disable AA
UPDATE `creature_template` SET `AIName` = 'VehicleAI' WHERE (`entry` = 29918);
-- Spells from 1,2,3 to 4,5,6
DELETE FROM `creature_template_spell` WHERE (`CreatureID` = 29918);
INSERT INTO `creature_template_spell` (`CreatureID`, `Index`, `Spell`, `VerifiedBuild`) VALUES
(29918, 3, 54459, 12340),
(29918, 4, 54458, 12340),
(29918, 5, 54460, 12340);