From 059785955ffd441f1588fc9f1c08bdabefc4ed19 Mon Sep 17 00:00:00 2001 From: SileNce5k Date: Thu, 22 Jul 2021 11:23:21 +0200 Subject: [PATCH] Fix servericon command --- commands/info/servericon.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/info/servericon.js b/commands/info/servericon.js index c55d90f..59de01b 100644 --- a/commands/info/servericon.js +++ b/commands/info/servericon.js @@ -1,6 +1,6 @@ module.exports = { - name = "servericon", - description = "Send the server icon", + name: "servericon", + description: "Send the server icon", execute({message, client}){ message.channel.send(client.user.avatarURL({ dynamic: true, size: 4096 })) }