From 82e9d0498b3465a3dc02ee1724666357712b7f2a Mon Sep 17 00:00:00 2001 From: Matthew R Date: Tue, 13 Apr 2021 00:24:24 -0400 Subject: [PATCH] fix removal things --- src/commands/inquiry_rm.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/commands/inquiry_rm.ts b/src/commands/inquiry_rm.ts index 81298c3..774406d 100644 --- a/src/commands/inquiry_rm.ts +++ b/src/commands/inquiry_rm.ts @@ -33,7 +33,8 @@ export default class Inquiry_Remove extends Command { const embed = new RichEmbed(); embed.setTitle('Inquiry - Removed'); - embed.addField('Member', `${member.username}#${member.discriminator} | <@${member.id}>`, true); + embed.addField('IID', inquiry.iid); + embed.addField('Member', `${member.username}#${member.discriminator} | <@${member.id}>`); embed.addField('Department/Service', inquiry.name || 'N/A'); embed.addField('Reason', inquiry.reason || 'N/A'); embed.setFooter(this.client.user.username, this.client.user.avatarURL);