From 32dbcd062e0e17db5a873b228d4a4a6f0a97ebbd Mon Sep 17 00:00:00 2001 From: SileNce5k Date: Thu, 22 Jul 2021 02:32:34 +0200 Subject: [PATCH] Add servericon command --- commands/info/servericon.js | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 commands/info/servericon.js diff --git a/commands/info/servericon.js b/commands/info/servericon.js new file mode 100644 index 0000000..c55d90f --- /dev/null +++ b/commands/info/servericon.js @@ -0,0 +1,7 @@ +module.exports = { + name = "servericon", + description = "Send the server icon", + execute({message, client}){ + message.channel.send(client.user.avatarURL({ dynamic: true, size: 4096 })) + } +} \ No newline at end of file