Merge pull request #761 from Tinky124/patch-1

Fix random position saving problem
This commit is contained in:
Jérémie N'gadi
2020-05-17 13:28:06 +02:00
committed by GitHub
+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`)
);