Browse Source

Add footer

master
Abheek Dhawan 4 years ago
parent
commit
e978b64c64
  1. 1
      index.js

1
index.js

@ -50,6 +50,7 @@ async function aboutServer(message) {
.addField("Verification Level", message.guild.verificationLevel) .addField("Verification Level", message.guild.verificationLevel)
.addField("Channels", `Text: ${textChannelCount} • Voice: ${voiceChannelCount} • Categories: ${categoryChannelCount}`) .addField("Channels", `Text: ${textChannelCount} • Voice: ${voiceChannelCount} • Categories: ${categoryChannelCount}`)
.setThumbnail(message.guild.iconURL()) .setThumbnail(message.guild.iconURL())
.setFooter(`Server ID: ${message.guild.id}`)
.setTimestamp(); .setTimestamp();
message.channel.send(aboutServerEmbed).catch(console.error); message.channel.send(aboutServerEmbed).catch(console.error);
} }

Loading…
Cancel
Save