diff options
| author | Aokromes <Aokromes@users.noreply.github.com> | 2024-02-18 13:49:13 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-18 13:49:13 +0100 |
| commit | f6977565b00c146bc4c6ccfddc6ce36c4c530e6b (patch) | |
| tree | 959fad9e3f9df02fbb1757467d340cfc73b47c1a | |
| parent | d405dcd545867eb580b6a0e26da09ac48373b4bb (diff) | |
DB/Creature: Proto-Drake Whelp must fly
closes #28932 by CraftedRO
| -rw-r--r-- | sql/updates/world/3.3.5/2024_02_18_02_world.sql | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2024_02_18_02_world.sql b/sql/updates/world/3.3.5/2024_02_18_02_world.sql new file mode 100644 index 00000000000..b404076b214 --- /dev/null +++ b/sql/updates/world/3.3.5/2024_02_18_02_world.sql @@ -0,0 +1,8 @@ +-- Proto-Drake Whelp +DELETE FROM `creature_template_addon` WHERE `entry` =32592; +INSERT INTO `creature_template_addon` (`entry`, `path_id`, `mount`, `MountCreatureID`, `StandState`, `AnimTier`, `VisFlags`, `SheathState`, `PvPFlags`, `emote`, `visibilityDistanceType`, `auras`) VALUES +(32592, 0, 0, 0, 0, 3, 0, 1, 0, 0, 0, "52970"); + +DELETE FROM `creature_template_movement` WHERE `CreatureId`=32592; +INSERT INTO `creature_template_movement` (`CreatureId`, `Ground`, `Swim`, `Flight`, `Rooted`, `Chase`, `Random`, `InteractionPauseTimer`) VALUES +(32592, 0, 0, 1, 0, 0, 0, NULL); |
