From 90f685566fb0694e69beaa80285bf91d2404ff96 Mon Sep 17 00:00:00 2001 From: Aokromes Date: Sat, 24 Feb 2024 16:29:09 +0100 Subject: DB/Creature: Add AnimTier Hover for two npc closes #29724 by CraftedRO --- sql/updates/world/3.3.5/2024_02_24_03_world.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 sql/updates/world/3.3.5/2024_02_24_03_world.sql (limited to 'sql/updates') diff --git a/sql/updates/world/3.3.5/2024_02_24_03_world.sql b/sql/updates/world/3.3.5/2024_02_24_03_world.sql new file mode 100644 index 00000000000..96991aca1d6 --- /dev/null +++ b/sql/updates/world/3.3.5/2024_02_24_03_world.sql @@ -0,0 +1,7 @@ +-- Add AnimTier Hover for two npc +UPDATE `creature_template_addon` SET `AnimTier`=2 WHERE `entry` IN (19152,26471); + +DELETE FROM `creature_template_movement` WHERE `CreatureId` IN (19152,26471); +INSERT INTO `creature_template_movement` (`CreatureId`, `Ground`, `Swim`, `Flight`, `Rooted`, `Chase`, `Random`, `InteractionPauseTimer`) VALUES +(19152, 0, 0, 1, 0, 0, 0, NULL), -- 19152 (Interrogator Khan) +(26471, 0, 0, 1, 1, 0, 0, NULL); -- 26471 (Image of Archmage Aethas Sunreaver) -- cgit v1.2.3