Allow nsfw in nsfw channel

This commit is contained in:
Supositware 2019-02-10 19:00:00 +01:00
parent 4796be772a
commit be99b7d165

View file

@ -40,7 +40,7 @@ class RedditCommand extends Command {
if (a == 5) if (a == 5)
return message.channel.send('Could not find any images'); return message.channel.send('Could not find any images');
} }
if (response.data.children[i].data.over_18 == true) if (response.data.children[i].data.over_18 == true && !message.channel.nsfw)
return message.channel.send('No nsfw'); return message.channel.send('No nsfw');
const redditEmbed = new MessageEmbed() const redditEmbed = new MessageEmbed()
.setColor('#ff9900') .setColor('#ff9900')