mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-24 02:46:33 +01:00
Core/Movement: Allow using walk when chasing v2 (#23073)
* Allow walk when chasing
This commit is contained in:
committed by
Giacomo Pozzoni
parent
91c0bc966a
commit
dbadb6369c
7
sql/updates/world/3.3.5/2019_03_02_00_world.sql
Normal file
7
sql/updates/world/3.3.5/2019_03_02_00_world.sql
Normal 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);
|
||||
Reference in New Issue
Block a user