From 274215f6654b4512d5e87eb2eb16d94436014823 Mon Sep 17 00:00:00 2001 From: SileNce5k Date: Mon, 5 Jul 2021 16:02:35 +0200 Subject: [PATCH] Remove unused variable --- commands/botinfo.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/botinfo.js b/commands/botinfo.js index b49e15d..6393a7f 100644 --- a/commands/botinfo.js +++ b/commands/botinfo.js @@ -8,7 +8,7 @@ module.exports = { description: 'Shows information about the bot', execute({message, client, prefix}) { let guildCount = 0; - client.guilds.cache.each(guild => { + client.guilds.cache.each(() => { guildCount++ });