diff options
author | Aokromes <Aokromes@users.noreply.github.com> | 2024-02-24 16:29:09 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-24 16:29:09 +0100 |
commit | 90f685566fb0694e69beaa80285bf91d2404ff96 (patch) | |
tree | 306be80207f44d287576a795a4904eb39e5e61fa | |
parent | ee7d4d2b243d02da1fd31de6adecf8eecfd0bb99 (diff) |
DB/Creature: Add AnimTier Hover for two npc
closes #29724 by CraftedRO
-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) |