diff --git a/commands/info/servericon.js b/commands/info/servericon.js index 59de01b..5f14bb8 100644 --- a/commands/info/servericon.js +++ b/commands/info/servericon.js @@ -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 })) } } \ No newline at end of file