fix bot crash on bot response with only text
This commit is contained in:
15 files changed
+20
-20
No files matched your search
+1
-1
@@ -37,7 +37,7 @@ module.exports = {
|
||||
*/
|
||||
run: async (client, interaction, args, { GuildDB }) => {
|
||||
if (GuildDB.customChannelStatus==true&&!GuildDB.allowedChannels.includes(interaction.channel_id)) {
|
||||
return interaction.send(`You are not allowed to use the bot in this channel.`);
|
||||
return interaction.send({ content: `You are not allowed to use the bot in this channel.` });
|
||||
}
|
||||
|
||||
let targetUserID = args[0].value.replace('<@!', '').replace('>', '');
|
||||
|
||||
Reference in new issue
Block a user