From dbadb6369cf0b6d394fffaa1dedc612dfb5cbe2a Mon Sep 17 00:00:00 2001 From: Sorikoff <46191832+Sorikoff@users.noreply.github.com> Date: Sat, 2 Mar 2019 14:04:01 +0000 Subject: Core/Movement: Allow using walk when chasing v2 (#23073) * Allow walk when chasing --- sql/updates/world/3.3.5/2019_03_02_00_world.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 sql/updates/world/3.3.5/2019_03_02_00_world.sql (limited to 'sql/updates') diff --git a/sql/updates/world/3.3.5/2019_03_02_00_world.sql b/sql/updates/world/3.3.5/2019_03_02_00_world.sql new file mode 100644 index 00000000000..4399b0ae3ad --- /dev/null +++ b/sql/updates/world/3.3.5/2019_03_02_00_world.sql @@ -0,0 +1,7 @@ +ALTER TABLE `creature_template_movement` ADD `Chase` tinyint(3) UNSIGNED NOT NULL DEFAULT '0'; +ALTER TABLE `creature_movement_override` ADD `Chase` tinyint(3) UNSIGNED NOT NULL DEFAULT '0'; + +DELETE FROM `creature_template_movement` WHERE `CreatureID` IN (20064,28654); +INSERT INTO `creature_template_movement` (`CreatureID`,`Ground`,`Swim`,`Flight`,`Rooted`,`Chase`) VALUES +(20064,1,0,0,0,2), +(28654,1,0,0,0,2); -- cgit v1.2.3