Updated Server Command

This commit is contained in:
Ahmad 2024-06-08 15:02:04 -04:00
parent 1f865dad03
commit 66b776159c
No known key found for this signature in database
GPG key ID: 8FD8A93530D182BF

View file

@ -11,7 +11,8 @@ const command: Command = {
.setDescription("Provides information about the server."),
execute: async (interaction) => {
await interaction.reply(
`The server name is ${interaction?.guild?.name} and it has ${interaction?.guild?.memberCount} members.`
/* @ts-ignore */
`The server name is ${interaction?.guild?.name} and it has ${interaction?.guild?.memberCount} members. It was created on ${interaction?.guild?.createdAt} and is ${interaction?.guild?.createdAt?.getFullYear() - 2024} years old.`
);
},
};