From 5d173c346248ac9e0d26bbdd161cc69d1d747535 Mon Sep 17 00:00:00 2001 From: Asthalor <87535580+Asthalor@users.noreply.github.com> Date: Sun, 25 Jul 2021 02:36:39 +0200 Subject: [PATCH] fix(DB/Creature): slowed the movement speed of Deadwind Mauler (#7055) Reduced the speed of Deadwind Mauler to be the same as the other ogres there --- .../sql/updates/pending_db_world/rev_1626854857651022900.sql | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1626854857651022900.sql diff --git a/data/sql/updates/pending_db_world/rev_1626854857651022900.sql b/data/sql/updates/pending_db_world/rev_1626854857651022900.sql new file mode 100644 index 000000000..b42e20086 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1626854857651022900.sql @@ -0,0 +1,5 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1626854857651022900'); + +-- Reduced the speed from 3.16 to 1.6 as the rest of the ogres in that place +UPDATE `creature_template` SET `speed_walk` = 1.6 WHERE (`entry` = 7371); +