aboutsummaryrefslogtreecommitdiff
path: root/src/commands/owner/ReloadCommand.ts
diff options
context:
space:
mode:
authorTymanWasTaken <32660892+tymanwastaken@users.noreply.github.com>2021-05-11 10:51:31 -0600
committerTymanWasTaken <32660892+tymanwastaken@users.noreply.github.com>2021-05-11 10:51:31 -0600
commite0b2b559219d642d6b5353490ab60ae1a754b560 (patch)
treea7864912295db0c8445f06ca1f51ad4d1971e6dd /src/commands/owner/ReloadCommand.ts
parent2ef1219194811e5732b6234bd98c531e1eb77dc5 (diff)
downloadtanzanite-e0b2b559219d642d6b5353490ab60ae1a754b560.tar.gz
tanzanite-e0b2b559219d642d6b5353490ab60ae1a754b560.tar.bz2
tanzanite-e0b2b559219d642d6b5353490ab60ae1a754b560.zip
change commmand & listener file name formatting
Diffstat (limited to 'src/commands/owner/ReloadCommand.ts')
-rw-r--r--src/commands/owner/ReloadCommand.ts34
1 files changed, 0 insertions, 34 deletions
diff --git a/src/commands/owner/ReloadCommand.ts b/src/commands/owner/ReloadCommand.ts
deleted file mode 100644
index 2311424..0000000
--- a/src/commands/owner/ReloadCommand.ts
+++ /dev/null
@@ -1,34 +0,0 @@
-import { BotCommand } from '../../lib/extensions/BotCommand';
-import { stripIndent } from 'common-tags';
-import { BotMessage } from '../../lib/extensions/BotMessage';
-
-export default class ReloadCommand extends BotCommand {
- constructor() {
- super('reload', {
- aliases: ['reload'],
- description: {
- content: 'Reloads the bot',
- usage: 'reload',
- examples: ['reload']
- },
- ownerOnly: true,
- typing: true
- });
- }
-
- public async exec(message: BotMessage): Promise<void> {
- try {
- await this.client.util.shell('yarn rimraf dist/');
- await this.client.util.shell('yarn tsc');
- this.client.commandHandler.reloadAll();
- this.client.listenerHandler.reloadAll();
- this.client.inhibitorHandler.reloadAll();
- await message.util.send('🔁 Successfully reloaded!');
- } catch (e) {
- await message.util.send(stripIndent`
- An error occured while reloading:
- ${await this.client.util.haste(e.stack)}
- `);
- }
- }
-}