aboutsummaryrefslogtreecommitdiff
path: root/src/lib/common
diff options
context:
space:
mode:
authorIRONM00N <64110067+IRONM00N@users.noreply.github.com>2022-02-03 21:12:19 -0500
committerIRONM00N <64110067+IRONM00N@users.noreply.github.com>2022-02-03 21:12:19 -0500
commit821ed93ccf55e4f32f6f25f502bce1e5b161d356 (patch)
tree42d0547f589134a6e549975f2da199f943e7b3b9 /src/lib/common
parent75eb731d077638472abc2f2423f6759a110bcda6 (diff)
downloadtanzanite-821ed93ccf55e4f32f6f25f502bce1e5b161d356.tar.gz
tanzanite-821ed93ccf55e4f32f6f25f502bce1e5b161d356.tar.bz2
tanzanite-821ed93ccf55e4f32f6f25f502bce1e5b161d356.zip
add bot info to user info command
Diffstat (limited to 'src/lib/common')
-rw-r--r--src/lib/common/AutoMod.ts4
1 files changed, 2 insertions, 2 deletions
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(', ')}`
)