Fix random position saving problem

This fix the problem when position doesnt save good...
This commit is contained in:
Tinky
2020-05-17 11:55:31 +02:00
committed by GitHub
parent 24d2cc894f
commit 2d9de9e4c4
+1 -1
View File
@@ -9,7 +9,7 @@ CREATE TABLE `users` (
`job` VARCHAR(20) NULL DEFAULT 'unemployed',
`job_grade` INT NULL DEFAULT 0,
`loadout` LONGTEXT NULL DEFAULT NULL,
`position` VARCHAR(53) NULL DEFAULT '{"x":-269.4,"y":-955.3,"z":31.2,"heading":205.8}',
`position` VARCHAR(255) NULL DEFAULT '{"x":-269.4,"y":-955.3,"z":31.2,"heading":205.8}',
PRIMARY KEY (`identifier`)
);