From 76339c5b0d6958c757cad4f4a3277eb4f0edadf2 Mon Sep 17 00:00:00 2001 From: mat Date: Sun, 3 Oct 2021 12:12:36 -0500 Subject: remove some comments from the previous commit --- src/hypixelCached.ts | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'src') diff --git a/src/hypixelCached.ts b/src/hypixelCached.ts index a80f4d2..23fc15e 100644 --- a/src/hypixelCached.ts +++ b/src/hypixelCached.ts @@ -10,11 +10,10 @@ 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 */ +/** uuid: username */ export const usernameCache = new NodeCache({ // stdTTL: 60 * 60 * 4, stdTTL: 60 * 30, @@ -22,9 +21,7 @@ export const usernameCache = new NodeCache({ 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({ -- cgit