fix(DB/creature): add movement to static Elder Springpaws (#7460)

This commit is contained in:
Azcobu
2021-08-26 19:15:38 +09:30
committed by GitHub
parent 45218224b4
commit 5f28d2cfd8

View File

@@ -0,0 +1,6 @@
INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1629430048757373143');
-- Add movement to Elder Springpaws
UPDATE `creature` SET `MovementType` = 1, `wander_distance` = 5 WHERE `id` = 15652 AND `guid` IN (55987, 55988, 55989, 55990, 56007, 56008);
-- Adjusts Elder Springpaw position to stop it falling through the world
UPDATE `creature` SET `position_x` = 8183.1, `position_y` = -7747.6, `position_z` = 162.8 WHERE `id` = 15652 AND `guid` = 56008;