diff options
-rw-r--r-- | sql/updates/world/3.3.5/2024_02_24_03_world.sql | 7 |
1 files changed, 7 insertions, 0 deletions
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) |