From c4c1d9ffeb179e208792c88dd099caea5030581b Mon Sep 17 00:00:00 2001 From: IRONM00N <64110067+IRONM00N@users.noreply.github.com> Date: Sun, 5 Sep 2021 20:24:50 -0400 Subject: add moderation logging, fixes, hide modlog, jank --- src/commands/info/help.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/commands/info/help.ts') diff --git a/src/commands/info/help.ts b/src/commands/info/help.ts index ad4e00f..1338f8a 100644 --- a/src/commands/info/help.ts +++ b/src/commands/info/help.ts @@ -90,14 +90,14 @@ export default class HelpCommand extends BushCommand { : args.command : null; if (!isOwner) args.showHidden = false; - if (!command || command.completelyHide) { + if (!command || command.pseudo) { const embed = new MessageEmbed().setColor(util.colors.default).setTimestamp(); if (message.guild) { embed.setFooter(`For more information about a command use ${prefix}help `); } for (const [, category] of this.handler.categories) { const categoryFilter = category.filter((command) => { - if (command.completelyHide) return false; + if (command.pseudo) return false; if (command.hidden && !args.showHidden) return false; if (command.channel == 'guild' && !message.guild && !args.showHidden) return false; if (command.ownerOnly && !isOwner) return false; -- cgit