if message come from nsfw channel, add spoiler
This commit is contained in:
parent
1a85c3251f
commit
ad5ed9cf2c
1 changed files with 14 additions and 4 deletions
|
@ -59,17 +59,27 @@ class MessageReactionAddListener extends Listener {
|
||||||
channel = client.channels.get(shameboardChannel['shameboard']);
|
channel = client.channels.get(shameboardChannel['shameboard']);
|
||||||
}
|
}
|
||||||
|
|
||||||
const Embed = new MessageEmbed()
|
let Embed = new MessageEmbed()
|
||||||
.setColor(reaction.message.member.displayHexColor)
|
.setColor(reaction.message.member.displayHexColor)
|
||||||
.setAuthor(reaction.message.author.username, reaction.message.author.displayAvatarURL())
|
.setAuthor(reaction.message.author.username, reaction.message.author.displayAvatarURL())
|
||||||
.setDescription(messageContent)
|
|
||||||
.addField('Jump to', `[message](https://discordapp.com/channels/${reaction.message.guild.id}/${reaction.message.channel.id}/${reaction.message.id})`, true)
|
.addField('Jump to', `[message](https://discordapp.com/channels/${reaction.message.guild.id}/${reaction.message.channel.id}/${reaction.message.id})`, true)
|
||||||
.addField('Channel', reaction.message.channel, true)
|
.addField('Channel', reaction.message.channel, true)
|
||||||
.setFooter(reaction.count + ' ' + emote)
|
.setFooter(reaction.count + ' ' + emote)
|
||||||
.setTimestamp();
|
.setTimestamp();
|
||||||
|
|
||||||
return channel.send({files: messageAttachments, embed: Embed})
|
if (reaction.message.channel.nsfw) {
|
||||||
.catch(() => channel.send(messageAttachments, { embed: Embed}));
|
Embed.setDescription(`||${messageContent}||`);
|
||||||
|
if (messageAttachments != '') {
|
||||||
|
return channel.send(`||${messageAttachments}||`, {embed: Embed});
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
return channel.send({embed: Embed});
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
Embed.setDescription(messageContent);
|
||||||
|
return channel.send({files: messageAttachments, embed: Embed})
|
||||||
|
.catch(() => channel.send(messageAttachments, { embed: Embed}));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue