From 7278b0563cb7ac7d76b925af4668946ee5784c6e Mon Sep 17 00:00:00 2001 From: mat Date: Mon, 31 May 2021 19:22:45 -0500 Subject: fix basicPlayerCache not being in ms --- build/hypixelCached.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'build') diff --git a/build/hypixelCached.js b/build/hypixelCached.js index 9b753e7..cb078f2 100644 --- a/build/hypixelCached.js +++ b/build/hypixelCached.js @@ -54,7 +54,7 @@ exports.playerCache = new node_cache_1.default({ // cache "basic players" (players without profiles) for 30 minutes exports.basicPlayerCache = new lru_cache_1.default({ max: 10000, - maxAge: 60 * 30, + maxAge: 60 * 30 * 1000, }); exports.profileCache = new node_cache_1.default({ stdTTL: 30, -- cgit