1
0
Fork 0

verbiage changes

Matthew 2024-12-18 15:26:26 -05:00
parent 88c7b83cfe
commit a289fd2e10
Signed by: matthew
SSH Key Fingerprint: SHA256:piIXekA9q1p0ZGi4ogFbNY1embip5Ytbi3v8AZ8UYq4
1 changed files with 2 additions and 1 deletions

View File

@ -19,8 +19,9 @@ export default class Info extends Command {
public async run(message: Message) { public async run(message: Message) {
try { try {
const embed = new MessageEmbed(); const embed = new MessageEmbed();
embed.setTitle('Information'); embed.setTitle(`Information for ${this.client.user.username}`);
embed.setThumbnail(this.client.user.avatarURL()); 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('Language(s)', '<:ts:604565354554982401> TypeScript, <:Go:703449475405971466> Go', true);
embed.addField('Runtime', `Node (${process.version})`, 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); embed.addField('Compilers/Transpilers', `TypeScript [tsc] (${tscVersion}) | Go [gc] (${await this.client.util.exec('go version')})`, true);