fix(DB/Creature): add movement to some spawns of Burning Blade Fanatic and Burning Blade Apprentice (#7060)

They had no movement on any spawn, so I added to some of them
This commit is contained in:
Asthalor
2021-07-23 15:12:59 +02:00
committed by GitHub
parent 3ab55e96b6
commit b5dfba0550

View File

@@ -0,0 +1,8 @@
INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1626875485474871100');
-- Added movement to some Burning Blade Fanatic spawns
UPDATE `creature` SET `wander_distance` = 5, `MovementType` = 1 WHERE (`id` = 3197) AND (`guid` IN (6417, 6418, 6422, 6426, 6427, 6429, 7334, 7337, 7898, 7900, 7901));
-- Added movement to some Burning Blade Apprentice
UPDATE `creature` SET `wander_distance` = 5, `MovementType` = 1 WHERE (`id` = 3198) AND (`guid` IN (6420, 6423, 6430, 7339, 6431, 7880, 7883, 7885, 8429));