Core/Movement: Allow using walk when chasing v2 (#23073)

* Allow walk when chasing
This commit is contained in:
Sorikoff
2019-03-02 14:04:01 +00:00
committed by Giacomo Pozzoni
parent 91c0bc966a
commit dbadb6369c
10 changed files with 78 additions and 40 deletions

View File

@@ -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);