From b5dfba0550886bf846db89d42b87e1fa101df5e4 Mon Sep 17 00:00:00 2001 From: Asthalor <87535580+Asthalor@users.noreply.github.com> Date: Fri, 23 Jul 2021 15:12:59 +0200 Subject: [PATCH] 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 --- .../updates/pending_db_world/rev_1626875485474871100.sql | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1626875485474871100.sql diff --git a/data/sql/updates/pending_db_world/rev_1626875485474871100.sql b/data/sql/updates/pending_db_world/rev_1626875485474871100.sql new file mode 100644 index 000000000..cf44f7543 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1626875485474871100.sql @@ -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)); +