From f9cf43fc47be2d497d92d728ea892246df96d736 Mon Sep 17 00:00:00 2001 From: IRONM00N <64110067+IRONM00N@users.noreply.github.com> Date: Wed, 29 Dec 2021 16:05:18 -0500 Subject: import type --- src/commands/moulberry-bush/report.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/commands/moulberry-bush/report.ts') diff --git a/src/commands/moulberry-bush/report.ts b/src/commands/moulberry-bush/report.ts index a65cfcf..ae67e00 100644 --- a/src/commands/moulberry-bush/report.ts +++ b/src/commands/moulberry-bush/report.ts @@ -1,4 +1,4 @@ -import { AllowedMentions, ArgType, BushCommand, type BushMessage } from '#lib'; +import { AllowedMentions, BushCommand, type ArgType, type BushMessage } from '#lib'; import { MessageEmbed } from 'discord.js'; import moment from 'moment'; @@ -60,7 +60,7 @@ export default class ReportCommand extends BushCommand { //The formatting of the report is mostly copied from carl since it is pretty good when it actually works const reportEmbed = new MessageEmbed() - .setFooter(`Reporter ID: ${message.author.id} Reported ID: ${member.user.id}`) + .setFooter({ text: `Reporter ID: ${message.author.id} Reported ID: ${member.user.id}` }) .setTimestamp() .setAuthor({ name: `Report From: ${message.author.tag}`, -- cgit