diff options
author | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-07-26 22:53:27 -0400 |
---|---|---|
committer | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-07-26 22:53:27 -0400 |
commit | 7990abdb511eeec2a114b124a3628b10bfefc342 (patch) | |
tree | c9cc92439bb0b8385e8fcd82c169fd6f86bb1974 /src/commands/dev | |
parent | 80d5b5b11ae261945dc725a0a80115922003afcf (diff) | |
download | tanzanite-7990abdb511eeec2a114b124a3628b10bfefc342.tar.gz tanzanite-7990abdb511eeec2a114b124a3628b10bfefc342.tar.bz2 tanzanite-7990abdb511eeec2a114b124a3628b10bfefc342.zip |
chore: add new eslint rule
Diffstat (limited to 'src/commands/dev')
-rw-r--r-- | src/commands/dev/reload.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands/dev/reload.ts b/src/commands/dev/reload.ts index 2be67fa..4748aba 100644 --- a/src/commands/dev/reload.ts +++ b/src/commands/dev/reload.ts @@ -44,7 +44,7 @@ export default class ReloadCommand extends BushCommand { client.inhibitorHandler.reloadAll(); return message.util.send(`🔁 Successfully reloaded! (${new Date().getTime() - s.getTime()}ms)`); } catch (e) { - if (output) await client.logger.error('reloadCommand', output); + if (output) void client.logger.error('reloadCommand', output); return message.util.send(`An error occurred while reloading:\n${await util.codeblock(e?.stack || e, 2048 - 34, 'js')}`); } } |