aboutsummaryrefslogtreecommitdiff
path: root/sql/updates
diff options
context:
space:
mode:
Diffstat (limited to 'sql/updates')
-rw-r--r--sql/updates/world/3.3.5/2019_03_02_00_world.sql7
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);