Remove unused variable

This commit is contained in:
SileNce5k 2021-07-05 16:02:35 +02:00
parent edba188072
commit 274215f665
No known key found for this signature in database
GPG key ID: C507260E7F2583AD

View file

@ -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++
});