From a556afc9ec5c0e381c7a1269f1d970b381b18ae5 Mon Sep 17 00:00:00 2001 From: Ahmad <103906421+ahmadk953@users.noreply.github.com> Date: Sun, 9 Jun 2024 16:37:50 -0400 Subject: [PATCH] Updated Server Command --- source/commands/server.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/source/commands/server.ts b/source/commands/server.ts index 292747f..c428680 100644 --- a/source/commands/server.ts +++ b/source/commands/server.ts @@ -11,8 +11,7 @@ const command: Command = { .setDescription("Provides information about the server."), execute: async (interaction) => { await interaction.reply( - /* @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.` + `The server ${interaction?.guild?.name} has ${interaction?.guild?.memberCount} members and was created on ${interaction?.guild?.createdAt}. It is ${new Date().getFullYear() - interaction?.guild?.createdAt?.getFullYear()!} years old.` ); }, };