From 0bddb65c99246a23324407c5b339563d7931b404 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sat, 7 Nov 2020 09:32:44 -0500 Subject: [PATCH] Fix --- commands/util-public/help.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/util-public/help.js b/commands/util-public/help.js index 4375c5d3..3854dbfe 100644 --- a/commands/util-public/help.js +++ b/commands/util-public/help.js @@ -27,7 +27,7 @@ module.exports = class HelpCommand extends Command { if (!command) { const embeds = []; for (let i = 0; i < Math.ceil(this.client.registry.groups.size / 10); i++) { - const nsfw = msg.channel.nsfw && !this.client.isOwner(msg.author); + const nsfw = msg.channel.nsfw || this.client.isOwner(msg.author); const embed = new MessageEmbed() .setTitle(`Command List (Page ${i + 1})`) .setDescription(nsfw ? '' : 'Use in an NSFW channel to see NSFW commands.')