From 810d6e8e9ff1e2ae4e4d87255ed714983de40dc1 Mon Sep 17 00:00:00 2001 From: Cooldude2606 Date: Sun, 22 Oct 2017 00:07:23 +0100 Subject: [PATCH] Fixed uuids --- locale/ExpGaming-Core/ExpGaming - Server Interface.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/locale/ExpGaming-Core/ExpGaming - Server Interface.lua b/locale/ExpGaming-Core/ExpGaming - Server Interface.lua index 602911ed..46fad0f0 100644 --- a/locale/ExpGaming-Core/ExpGaming - Server Interface.lua +++ b/locale/ExpGaming-Core/ExpGaming - Server Interface.lua @@ -74,7 +74,7 @@ end -- converts any value into the uuid the script will use function server.get_uuid(var) if type(var) == 'string' then uuid = var - else uuid = tostring(global.exp_core.uuids.operator()) end + else uuid = tostring(global.exp_core.uuids()) end uuid = string.tohex('uuid'..uuid) server.refresh_uuid(uuid) return uuid