fix(DB/Creature): GhostLands Added movement to multiple mobs (#7567)

This commit is contained in:
Asthalor
2021-09-01 14:22:21 +02:00
committed by GitHub
parent b5bed38780
commit 1faca44120

View File

@@ -0,0 +1,9 @@
INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1629983088640886216');
-- Added roaming movement to Risen Creeper
UPDATE `creature` SET `wander_distance` = 5, `MovementType` = 1 WHERE (`id` = 16300) AND (`guid` IN (82122, 82123, 82124, 82130, 82713));
-- Added roaming movement to Dreadbone Skeleton
UPDATE `creature` SET `wander_distance` = 5, `MovementType` = 1 WHERE (`id` = 16303) AND (`guid` IN (82125, 82127, 82131, 82450, 82822, 82823, 82826, 82827, 82841, 82864, 82899, 82932));
-- Added roaming movement to Deathcage Scryer
UPDATE `creature` SET `wander_distance` = 5, `MovementType` = 1 WHERE (`id` = 16307) AND (`guid` IN (82126, 82129));