Core/Movement: allow waypoints to have orientation values of 0

This commit is contained in:
Ovahlord
2021-02-05 10:38:05 +01:00
parent ebc037e1eb
commit c20838ceaa
4 changed files with 20 additions and 9 deletions

View File

@@ -0,0 +1,2 @@
ALTER TABLE `waypoint_data` CHANGE `orientation` `orientation` FLOAT DEFAULT NULL NULL;
UPDATE `waypoint_data` SET `orientation`= NULL WHERE `orientation`= 0;