aboutsummaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authormat <github@matdoes.dev>2021-10-03 12:12:36 -0500
committermat <github@matdoes.dev>2021-10-03 12:12:36 -0500
commit76339c5b0d6958c757cad4f4a3277eb4f0edadf2 (patch)
tree34a69b018ae9ba16d35cb559f56c6cbafa860b2f /build
parent7afe165979419f1fd96f6356f32ded35cb143de9 (diff)
downloadskyblock-api-76339c5b0d6958c757cad4f4a3277eb4f0edadf2.tar.gz
skyblock-api-76339c5b0d6958c757cad4f4a3277eb4f0edadf2.tar.bz2
skyblock-api-76339c5b0d6958c757cad4f4a3277eb4f0edadf2.zip
remove some comments from the previous commit
Diffstat (limited to 'build')
-rw-r--r--build/hypixelCached.js5
1 files changed, 1 insertions, 4 deletions
diff --git a/build/hypixelCached.js b/build/hypixelCached.js
index 8018dc4..69bcc62 100644
--- a/build/hypixelCached.js
+++ b/build/hypixelCached.js
@@ -7,7 +7,6 @@ import * as mojang from './mojang.js';
import NodeCache from 'node-cache';
import { debug } from './index.js';
import LRUCache from 'lru-cache';
-// import { TLSSocket } from 'tls'
// cache usernames for 30 minutes
/** uuid: username */
export const usernameCache = new NodeCache({
@@ -16,9 +15,7 @@ export const usernameCache = new NodeCache({
checkperiod: 60,
useClones: false,
});
-// usernameCache.setMaxListeners(50)
-// // @ts-ignore for some reason the typings don't have setMaxListeners but it does
-// TLSSocket.setMaxListeners(50)
+usernameCache.setMaxListeners(50);
export const basicProfilesCache = new NodeCache({
stdTTL: 60 * 10,
checkperiod: 60,