From f4e5a0ef98981a8a65bb539a4666ced1f023bfce Mon Sep 17 00:00:00 2001 From: Asthalor <87535580+Asthalor@users.noreply.github.com> Date: Fri, 23 Jul 2021 15:13:27 +0200 Subject: [PATCH] fix(DB/Creature): slow down movement speed of Dragonmaw Battlemaster (#7063) He had speed of 1.54 instead of 1 as the rest of orcs --- .../sql/updates/pending_db_world/rev_1626884022511079500.sql | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1626884022511079500.sql diff --git a/data/sql/updates/pending_db_world/rev_1626884022511079500.sql b/data/sql/updates/pending_db_world/rev_1626884022511079500.sql new file mode 100644 index 000000000..e9b7f0bbd --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1626884022511079500.sql @@ -0,0 +1,5 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1626884022511079500'); + +-- Slowed the movement speed of Dragonmaw Battlemaster from 1.54 to 1 as the rest of the orcs there +UPDATE `creature_template` SET `speed_walk` = 1 WHERE (`entry` = 1037); +