fix(DB/creature): Greymist murlocs movement (#6192)

Some Greymist murlocs were standing still instead of wandering around

- Closes #6020
This commit is contained in:
anguaive
2021-06-10 13:10:51 +02:00
committed by GitHub
parent d72375c4eb
commit edeba59632

View File

@@ -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;