From a289fd2e101a9a7cf3f2aa1b678b67cac202398b Mon Sep 17 00:00:00 2001 From: Matthew Date: Wed, 18 Dec 2024 15:26:26 -0500 Subject: [PATCH] verbiage changes --- src/commands/info.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/commands/info.ts b/src/commands/info.ts index e3a87cb..bf38e10 100644 --- a/src/commands/info.ts +++ b/src/commands/info.ts @@ -19,8 +19,9 @@ export default class Info extends Command { public async run(message: Message) { try { const embed = new MessageEmbed(); - embed.setTitle('Information'); + embed.setTitle(`Information for ${this.client.user.username}`); embed.setThumbnail(this.client.user.avatarURL()); + embed.addField('Maintainer', 'Library of Code, Inc. | Department of Engineering', true); embed.addField('Language(s)', '<:ts:604565354554982401> TypeScript, <:Go:703449475405971466> Go', true); embed.addField('Runtime', `Node (${process.version})`, true); embed.addField('Compilers/Transpilers', `TypeScript [tsc] (${tscVersion}) | Go [gc] (${await this.client.util.exec('go version')})`, true);