aboutsummaryrefslogtreecommitdiff
path: root/src/commands/owner/reload.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands/owner/reload.ts')
-rw-r--r--src/commands/owner/reload.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/commands/owner/reload.ts b/src/commands/owner/reload.ts
index 7a508d7..0330b27 100644
--- a/src/commands/owner/reload.ts
+++ b/src/commands/owner/reload.ts
@@ -34,10 +34,10 @@ export default class ReloadCommand extends BotCommand {
}
public async exec(message: Message): Promise<void> {
- await message.util.send(await this.getResponse())
+ await message.util.send(await this.getResponse());
}
public async execSlash(message: CommandInteraction): Promise<void> {
- await message.reply(await this.getResponse())
+ await message.reply(await this.getResponse());
}
}