From 0a2583991af0deaf21e92e8a534be513351a1d9a Mon Sep 17 00:00:00 2001 From: Cooldude2606 Date: Sun, 22 Oct 2017 00:32:58 +0100 Subject: [PATCH] Fixed get data --- locale/ExpGaming-Core/ExpGaming - Server Interface.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/locale/ExpGaming-Core/ExpGaming - Server Interface.lua b/locale/ExpGaming-Core/ExpGaming - Server Interface.lua index 1e160c96..d43e3fe9 100644 --- a/locale/ExpGaming-Core/ExpGaming - Server Interface.lua +++ b/locale/ExpGaming-Core/ExpGaming - Server Interface.lua @@ -93,7 +93,8 @@ end function server.get_uuid_data(uuid) if global.exp_core.server.temp_varibles[uuid] then server.refresh_uuid(uuid) - debug_write({'CALLBACK','TEMP-VAR'},uuid) + debug_write({'CALLBACK','TEMP-VAR'},uuid) + if global.exp_core.server.temp_varibles[uuid].data == 'temp-var-temp-value' then return nil end return global.exp_core.server.temp_varibles[uuid].data end return nil end