fix(DB/creature): Add movement to 2 NPC spawns in Azshara (#7336)

* fix(DB/creature): Add movement to 2 NPC spawns in Azshara

* Comment typo
This commit is contained in:
Azcobu
2021-08-18 08:14:08 +09:30
committed by GitHub
parent 059e501b50
commit f16f879829

View File

@@ -0,0 +1,7 @@
INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1628938293777910785');
-- Add movement to Draconic Mageweaver
UPDATE `creature` SET `MovementType` = 1, `wander_distance` = 5 WHERE `guid` = 36427 AND `id` = 6131;
-- Add movement to Makrinni Razorclaw
UPDATE `creature` SET `MovementType` = 1, `wander_distance` = 10 WHERE `guid` = 36013 AND `id` = 6350;