diff options
| author | Sorikoff <46191832+Sorikoff@users.noreply.github.com> | 2019-03-02 14:04:01 +0000 |
|---|---|---|
| committer | Giacomo Pozzoni <giacomopoz@gmail.com> | 2019-03-02 15:04:01 +0100 |
| commit | dbadb6369cf0b6d394fffaa1dedc612dfb5cbe2a (patch) | |
| tree | 4bfe7f73fdefb6dbee9ac5be3a514b429c6b1470 /sql | |
| parent | 91c0bc966a5ce6237f25c706195044365e188b81 (diff) | |
Core/Movement: Allow using walk when chasing v2 (#23073)
* Allow walk when chasing
Diffstat (limited to 'sql')
| -rw-r--r-- | sql/updates/world/3.3.5/2019_03_02_00_world.sql | 7 |
1 files changed, 7 insertions, 0 deletions
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); |
