Fix servericon command
This commit is contained in:
parent
3dadfd5340
commit
008eccece3
1 changed files with 2 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
|||
module.exports = {
|
||||
name: "servericon",
|
||||
description: "Send the server icon",
|
||||
execute({message, client}){
|
||||
message.channel.send(client.user.avatarURL({ dynamic: true, size: 4096 }))
|
||||
execute({message}){
|
||||
message.channel.send(message.guild.iconURL({ dynamic: true, size: 4096 }))
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue