Fixed text

This commit is contained in:
2021-09-18 05:19:14 -07:00
parent 25d6d72b30
commit 90d07a840b
+1 -1
View File
@@ -113,7 +113,7 @@ const EMBEDS = {
INVALID_CHANNEL_THREAD: (data: Message | Interaction, channel: GuildChannel | ThreadChannel) => { INVALID_CHANNEL_THREAD: (data: Message | Interaction, channel: GuildChannel | ThreadChannel) => {
return makeErrorEmbed ({ return makeErrorEmbed ({
title: 'Thread channel is not supported', 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 user: (data instanceof Interaction) ? data.user : data.author
}); });
}, },