From 2d9de9e4c4010b2c9d25b5aae471ac100acbd56c Mon Sep 17 00:00:00 2001 From: Tinky <48660658+Tinky124@users.noreply.github.com> Date: Sun, 17 May 2020 11:55:31 +0200 Subject: [PATCH] Fix random position saving problem This fix the problem when position doesnt save good... --- es_extended.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/es_extended.sql b/es_extended.sql index 42bdfe21..3ddacbe5 100644 --- a/es_extended.sql +++ b/es_extended.sql @@ -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`) );