You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
390 B
Lua
18 lines
390 B
Lua
3 years ago
|
return {
|
||
|
CACHE_AGE = 3600, -- seconds
|
||
|
ID_DELAY = 5000, -- milliseconds
|
||
|
GATEWAY_DELAY = 500, -- milliseconds,
|
||
|
DISCORD_EPOCH = 1420070400000, -- milliseconds
|
||
|
GATEWAY_VERSION = 6,
|
||
|
DEFAULT_AVATARS = 5,
|
||
|
ZWSP = '\226\128\139',
|
||
|
NS_PER_US = 1000,
|
||
|
US_PER_MS = 1000,
|
||
|
MS_PER_S = 1000,
|
||
|
S_PER_MIN = 60,
|
||
|
MIN_PER_HOUR = 60,
|
||
|
HOUR_PER_DAY = 24,
|
||
|
DAY_PER_WEEK = 7,
|
||
|
GATEWAY_VERSION_VOICE = 3,
|
||
|
}
|