SyntaxGameServer/RCCService2020/ExtraContent/LuaPackages/AppTempCommon/LuaChat/TimeZone.lua

10 lines
194 B
Lua

local TimeZone = setmetatable({}, {
__index = function(self, key)
error(("Invalid TimeZone \"%s\""):format(tostring(key)), 2)
end
})
TimeZone.UTC = -2
TimeZone.Current = -1
return TimeZone