diff options
author | Winchester1987 <Winchester1987@users.noreply.github.com> | 2018-09-01 15:29:02 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2021-10-23 21:59:22 +0200 |
commit | 5424a787cab80f6698c907a6689e7657f7ca22f8 (patch) | |
tree | fc587fb2ba69fb012f8cf165c2225acefff24f49 | |
parent | bb599a95215195faad3e3f0ab1004bca8f547d07 (diff) |
DB/Creature: Fix Sindragosa movements
Closes #22358
(cherry picked from commit 9ace4093d8cf67ba54912038f93fa42d3aa14b9c)
-rw-r--r-- | sql/updates/world/master/2021_10_23_08_world_2018_09_01_01_world.sql | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sql/updates/world/master/2021_10_23_08_world_2018_09_01_01_world.sql b/sql/updates/world/master/2021_10_23_08_world_2018_09_01_01_world.sql new file mode 100644 index 00000000000..ca957cf0703 --- /dev/null +++ b/sql/updates/world/master/2021_10_23_08_world_2018_09_01_01_world.sql @@ -0,0 +1,7 @@ +-- +DELETE FROM `creature_template_movement` WHERE `CreatureId` IN (36853, 38265, 38266, 38267); +INSERT INTO `creature_template_movement` (`CreatureId`, `Ground`, `Swim`, `Flight`, `Rooted`) VALUES +(36853, 1, 0, 2, 0), +(38265, 1, 0, 2, 0), +(38266, 1, 0, 2, 0), +(38267, 1, 0, 2, 0); |