Fixed Global Loading

This commit is contained in:
Cooldude2606
2018-10-14 20:17:54 +01:00
parent b221108f07
commit 99450cd02d
2 changed files with 5 additions and 5 deletions

View File

@@ -43,11 +43,11 @@ Server.uuid = add_metatable({},function()
if game then
global.uuid=global.uuid+1
uuid=global.uuid+pre_load_uuid
verbose('Game UUID Increased: '..uuid)
verbose('Game UUID Increased: '..global.uuid..' ('..uuid..')')
else
pre_load_uuid=pre_load_uuid+1
uuid=pre_load_uuid
verbose('Load UUID Increased: '..uuid)
verbose('Load UUID Increased: '..pre_load_uuid..' ('..uuid..')')
end
return add_metatable({uuid},nil,function(tbl) return string.to_hex(tostring(tbl[1])) end)
end,function()