From ae9c105576cc7e0220140c616e37f37349edacb6 Mon Sep 17 00:00:00 2001 From: Colon <56617416+GDColon@users.noreply.github.com> Date: Thu, 19 May 2022 23:01:13 -0400 Subject: [PATCH] RobTop profile fix --- index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/index.js b/index.js index c904033..865e2c9 100644 --- a/index.js +++ b/index.js @@ -128,7 +128,8 @@ app.timeSince = function(id, time) { } app.userCache = function(id, accountID, playerID, name) { - if (!accountID || accountID == "0" || !app.config.cacheAccountIDs) return + + if (!accountID || accountID == "0" || accountID == "7956303" || !app.config.cacheAccountIDs) return // 7956303 seems to be an account also named robtop?? weird if (!playerID) return app.accountCache[id][accountID.toLowerCase()] let cacheStuff = [accountID, playerID, name] app.accountCache[id][name.toLowerCase()] = cacheStuff