From 821ed93ccf55e4f32f6f25f502bce1e5b161d356 Mon Sep 17 00:00:00 2001
From: IRONM00N <64110067+IRONM00N@users.noreply.github.com>
Date: Thu, 3 Feb 2022 21:12:19 -0500
Subject: add bot info to user info command

---
 src/lib/common/AutoMod.ts | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

(limited to 'src/lib/common')

diff --git a/src/lib/common/AutoMod.ts b/src/lib/common/AutoMod.ts
index 24feae0..2633e1a 100644
--- a/src/lib/common/AutoMod.ts
+++ b/src/lib/common/AutoMod.ts
@@ -145,7 +145,7 @@ export class AutoMod {
 					new Embed()
 						.setTitle(`[Severity ${Severity.TEMP_MUTE}] Mention Scam Deleted`)
 						.setDescription(
-							`**User:** ${this.message.author} (${this.message.author.tag})\n**Sent From**: <#${this.message.channel.id}> [Jump to context](${this.message.url})`
+							`**User:** ${this.message.author} (${this.message.author.tag})\n**Sent From:** <#${this.message.channel.id}> [Jump to context](${this.message.url})`
 						)
 						.addField({ name: 'Message Content', value: `${await util.codeblock(this.message.content, 1024)}` })
 						.setColor(color)
@@ -263,7 +263,7 @@ export class AutoMod {
 				new Embed()
 					.setTitle(`[Severity ${highestOffence.severity}] Automod Action Performed`)
 					.setDescription(
-						`**User:** ${this.message.author} (${this.message.author.tag})\n**Sent From**: <#${
+						`**User:** ${this.message.author} (${this.message.author.tag})\n**Sent From:** <#${
 							this.message.channel.id
 						}> [Jump to context](${this.message.url})\n**Blacklisted Words:** ${offences.map((o) => `\`${o.match}\``).join(', ')}`
 					)
-- 
cgit