From 66b776159c9f08b6da579f7ad1aea20cc79e86a3 Mon Sep 17 00:00:00 2001 From: Ahmad <103906421+ahmadk953@users.noreply.github.com> Date: Sat, 8 Jun 2024 15:02:04 -0400 Subject: [PATCH] Updated Server Command --- source/commands/server.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/commands/server.ts b/source/commands/server.ts index 5fb2317..292747f 100644 --- a/source/commands/server.ts +++ b/source/commands/server.ts @@ -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.` ); }, };