From 38d008501fe2bb99e291bb6c823b1d895e39af11 Mon Sep 17 00:00:00 2001 From: IRONM00N <64110067+IRONM00N@users.noreply.github.com> Date: Fri, 17 Sep 2021 18:36:16 -0400 Subject: update some dependencies --- src/commands/info/botInfo.ts | 3 ++- src/commands/info/help.ts | 4 +--- 2 files changed, 3 insertions(+), 4 deletions(-) (limited to 'src/commands') diff --git a/src/commands/info/botInfo.ts b/src/commands/info/botInfo.ts index 30bfeb4..8f85fe6 100644 --- a/src/commands/info/botInfo.ts +++ b/src/commands/info/botInfo.ts @@ -30,7 +30,8 @@ export default class BotInfoCommand extends BushCommand { sunos = 'SunOS', win32 = 'Windows', cygwin = 'Cygwin', - netbsd = 'NetBSD' + netbsd = 'NetBSD', + haiku = 'Haiku' } const developers = (await util.mapIDs(client.config.owners)).map((u) => u?.tag).join('\n'); diff --git a/src/commands/info/help.ts b/src/commands/info/help.ts index 8c97ba8..ce171c9 100644 --- a/src/commands/info/help.ts +++ b/src/commands/info/help.ts @@ -91,9 +91,7 @@ export default class HelpCommand extends BushCommand { if (!isOwner) args.showHidden = false; 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 `); - } + 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.pseudo) return false; -- cgit