From 4be5279c8f91b563b40b7dc8f56ebe173a9d7089 Mon Sep 17 00:00:00 2001 From: Matthew R Date: Sun, 28 Jun 2020 22:25:17 -0400 Subject: [PATCH] help text fixes for systemd linger cmd --- src/commands/systemd_linger.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/systemd_linger.ts b/src/commands/systemd_linger.ts index 2235ec7..025d6d8 100644 --- a/src/commands/systemd_linger.ts +++ b/src/commands/systemd_linger.ts @@ -14,7 +14,7 @@ export default class SystemdD_Linger extends Command { public async run(message: Message, args: string[]) { try { - if (!args[0]) return this.client.commands.get('help').run(message, [this.name]); + if (!args[0]) return this.client.commands.get('help').run(message, ['systemd', this.name]); const account = await this.client.db.Account.findOne({ userID: message.author.id }).lean().exec(); if (!account) return this.error(message.channel, 'You do not have a Cloud Services account.'); switch (args[0]) {