aboutsummaryrefslogtreecommitdiff
path: root/sql/updates
diff options
context:
space:
mode:
authortreeston <treeston.mmoc@gmail.com>2016-09-20 20:19:15 +0200
committertreeston <treeston.mmoc@gmail.com>2016-09-20 20:19:15 +0200
commit2170541a51ced3c15675b8854e0ae49461884f8c (patch)
treefb297803f5f7e56380cd0d1c1c9fadc6daa4d96b /sql/updates
parent3298a5f65dcbd21e93ddbe0d5c83bc06076b9f60 (diff)
Core/Unit: Standardize SetFacingTo and SetFacingToObject behavior while moving. Both now fail while moving unless arg2 bool is true.
Movement/SplineChain: Bump value range for DB chainId up to uint16 (0 to 65535) from uint8 (0 to 255). Turns out sniffs generate far more chains than I expected.
Diffstat (limited to 'sql/updates')
-rw-r--r--sql/updates/world/3.3.5/2016_09_20_02_world.sql3
1 files changed, 3 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2016_09_20_02_world.sql b/sql/updates/world/3.3.5/2016_09_20_02_world.sql
new file mode 100644
index 00000000000..5a4e5f7fae5
--- /dev/null
+++ b/sql/updates/world/3.3.5/2016_09_20_02_world.sql
@@ -0,0 +1,3 @@
+-- uint8 -> uint16 for chain ID
+ALTER TABLE `script_spline_chain_meta` MODIFY COLUMN `chainId` SMALLINT UNSIGNED NOT NULL;
+ALTER TABLE `script_spline_chain_waypoints` MODIFY COLUMN `chainId` SMALLINT UNSIGNED NOT NULL;