diff options
author | offl <offl@users.noreply.github.com> | 2020-07-08 17:28:26 +0200 |
---|---|---|
committer | Killyana <Killyana@users.noreply.github.com> | 2020-07-08 17:28:26 +0200 |
commit | 79c269c161e66c8c1903160723e4fca12e40f360 (patch) | |
tree | 2921dfa2c62506e84860306de6f21081c7fc7c86 | |
parent | 1bc68b2cae5f2aaac4c0297d2938c0420ad891a9 (diff) |
DB/Creature: Enable Thomas Booker's movement & formation and remove useless dist and angle from some formations
Closes #24926
-rw-r--r-- | sql/updates/world/3.3.5/2020_07_08_00_world.sql | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2020_07_08_00_world.sql b/sql/updates/world/3.3.5/2020_07_08_00_world.sql new file mode 100644 index 00000000000..96240f33a57 --- /dev/null +++ b/sql/updates/world/3.3.5/2020_07_08_00_world.sql @@ -0,0 +1,4 @@ +-- Path and formation added but aren't used +UPDATE `creature` SET `MovementType` = 2 WHERE `id` = 1437; +-- Creatures will never use dist and angle without movement(these shouldn't move) +UPDATE `creature_formations` SET `dist` = 0, `angle` = 0 WHERE `leaderGUID` IN (54579,138249,138252); |