Add servericon command

This commit is contained in:
SileNce5k 2021-07-22 02:32:34 +02:00
parent f49a3c7bf5
commit 32dbcd062e
No known key found for this signature in database
GPG key ID: C507260E7F2583AD

View file

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