diff options
| author | Aokromes <Aokromes@users.noreply.github.com> | 2025-02-27 18:06:37 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-02-27 18:06:37 +0100 |
| commit | 52dd4774757e0bfa2d90b2979665b92a029b3055 (patch) | |
| tree | b3ecf6cf1533e301e3e4e250d62006d991be5092 | |
| parent | 781b8ae216a8d532ca29df639313c1ab59981da9 (diff) | |
DB/Creature: Add missing movement flags to The Lich King
closes #30707
by CraftedRO
| -rw-r--r-- | sql/updates/world/3.3.5/2025_02_27_06_world.sql | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2025_02_27_06_world.sql b/sql/updates/world/3.3.5/2025_02_27_06_world.sql new file mode 100644 index 00000000000..487f842f781 --- /dev/null +++ b/sql/updates/world/3.3.5/2025_02_27_06_world.sql @@ -0,0 +1,4 @@ +-- Add missing movement flags to The Lich King +DELETE FROM `creature_template_movement` WHERE `CreatureId`=29110; +INSERT INTO `creature_template_movement` (`CreatureId`, `Ground`, `Swim`, `Flight`, `Rooted`, `Chase`, `Random`, `InteractionPauseTimer`) VALUES +(29110, 0, 0, 0, 1, 0, 0, NULL); |
