From edeba59632efa0939f42d672047e44643155369b Mon Sep 17 00:00:00 2001 From: anguaive <39011611+anguaive@users.noreply.github.com> Date: Thu, 10 Jun 2021 13:10:51 +0200 Subject: [PATCH] fix(DB/creature): Greymist murlocs movement (#6192) Some Greymist murlocs were standing still instead of wandering around - Closes #6020 --- .../updates/pending_db_world/rev_1622621882267236728.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1622621882267236728.sql diff --git a/data/sql/updates/pending_db_world/rev_1622621882267236728.sql b/data/sql/updates/pending_db_world/rev_1622621882267236728.sql new file mode 100644 index 000000000..cf0dd9713 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1622621882267236728.sql @@ -0,0 +1,7 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1622621882267236728'); + +-- These murlocs aren't guarding anything so they should wander around +UPDATE `creature` SET `wander_distance` = 5, `MovementType` = 1 WHERE `guid` IN (37854, 37951, 37955, 37967, 37974) AND `id` BETWEEN 2201 AND 2208; + +-- Murloc 37990 should face the bonfire he's standing next to +UPDATE `creature` SET `orientation` = 5.9828 WHERE `guid` = 37990 AND `id` BETWEEN 2201 AND 2208;