fix(DB/Creature): add movement to the static Vengeful/Ravening Apparitions (#7481)

- Closes #7480
This commit is contained in:
Jan M. D. Hansen
2021-08-26 15:41:35 +02:00
committed by GitHub
parent dd14c63088
commit 451986b9f1

View File

@@ -0,0 +1,7 @@
INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1629555309650648100');
# Add movement to static Vengeful Apparition
UPDATE `creature` SET `MovementType` = 1, `wander_distance` = 5 WHERE `id` = 16328 AND `guid` IN (81883, 81902, 82022, 82028, 82031, 82039);
# Add movement to static Ravening Apparition
UPDATE `creature` SET `MovementType` = 1, `wander_distance` = 5 WHERE `id` = 16327 AND `guid` IN (81872, 81873, 81874, 81880, 81884, 81889, 81903, 81904, 82024, 82034, 82037);