From 90d07a840b3371b4211cb6037a0aa121507ad41f Mon Sep 17 00:00:00 2001 From: Yuzu Date: Sat, 18 Sep 2021 05:19:14 -0700 Subject: [PATCH] Fixed text --- src/discord/MembershipScreening.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/discord/MembershipScreening.ts b/src/discord/MembershipScreening.ts index 565266a..4b08f65 100644 --- a/src/discord/MembershipScreening.ts +++ b/src/discord/MembershipScreening.ts @@ -113,7 +113,7 @@ const EMBEDS = { INVALID_CHANNEL_THREAD: (data: Message | Interaction, channel: GuildChannel | ThreadChannel) => { return makeErrorEmbed ({ title: 'Thread channel is not supported', - description: '``' + channel.name +'``' + ' a thread channel. Please use regular channel', + description: '``' + channel.name +'``' + ' is a thread channel. Please use a regular text channel', user: (data instanceof Interaction) ? data.user : data.author }); },