Don't allow urban in non-nsfw channels

This commit is contained in:
Dragon Fire
2020-04-11 12:06:27 -04:00
parent 97e38a57e3
commit 460154eeda
+3
View File
@@ -31,6 +31,9 @@ module.exports = class UrbanCommand extends Command {
}
async run(msg, { word }) {
if (msg.guild && this.client.botListGuilds.includes(msg.guild.id) && !msg.channel.nsfw) {
return msg.reply(`The \`${this.name}\` command can only be used in NSFW channels.`);
}
try {
const { body } = await request
.get('http://api.urbandictionary.com/v0/define')