From bf59fc2d8fcbe8941911394ba9f7ae8bc2e379cd Mon Sep 17 00:00:00 2001 From: Mycroft Date: Mon, 7 Mar 2022 17:47:34 +0000 Subject: [PATCH 1/2] Fix: add missing esx_accessories sql --- [SQL]/legacy.sql | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/[SQL]/legacy.sql b/[SQL]/legacy.sql index 12377e44..ae6c1840 100644 --- a/[SQL]/legacy.sql +++ b/[SQL]/legacy.sql @@ -133,6 +133,13 @@ INSERT INTO `datastore` (`name`, `label`, `shared`) VALUES ('society_police', 'Police', 1), ('society_taxi', 'Taxi', 1); + +INSERT INTO `datastore` (`name`, `label`, `shared`) VALUES + ('user_ears', 'Ears', 0), + ('user_glasses', 'Glasses', 0), + ('user_helmet', 'Helmet', 0), + ('user_mask', 'Mask', 0); + -- -------------------------------------------------------- -- From fbc20e9eafee1b042fdff0d85c12600bc03fb8e4 Mon Sep 17 00:00:00 2001 From: Mycroft Date: Mon, 7 Mar 2022 18:16:16 +0000 Subject: [PATCH 2/2] Fix: Wrong Marker Size --- [esx_addons]/esx_accessories/config.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/[esx_addons]/esx_accessories/config.lua b/[esx_addons]/esx_accessories/config.lua index b90e926c..8745dc55 100644 --- a/[esx_addons]/esx_accessories/config.lua +++ b/[esx_addons]/esx_accessories/config.lua @@ -7,7 +7,7 @@ Config.Price = 100 Config.EnableControls = true Config.DrawDistance = 10 -Config.Size = {x = 1.0, y = 1.0, z = 1.0} +Config.Size = {x = 1.5, y = 1.5, z = 1.0} Config.Color = {r = 102, g = 102, b = 204} Config.Type = 1