aboutsummaryrefslogtreecommitdiff
path: root/src/lib/extensions/BotCommand.ts
diff options
context:
space:
mode:
authorTyman <tyman@tyman.tech>2021-05-07 20:09:01 +0000
committerTyman <tyman@tyman.tech>2021-05-07 20:09:01 +0000
commit45f6cc57ef53163928a5f792e2cf6bcb1d201a6c (patch)
tree394b2fc9f93db34405958207066d7aa326ee62d7 /src/lib/extensions/BotCommand.ts
parentd4d5d0e822c9570a2ca9ef86cc21073dbbec2087 (diff)
downloadtanzanite-45f6cc57ef53163928a5f792e2cf6bcb1d201a6c.tar.gz
tanzanite-45f6cc57ef53163928a5f792e2cf6bcb1d201a6c.tar.bz2
tanzanite-45f6cc57ef53163928a5f792e2cf6bcb1d201a6c.zip
format
Diffstat (limited to 'src/lib/extensions/BotCommand.ts')
-rw-r--r--src/lib/extensions/BotCommand.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/extensions/BotCommand.ts b/src/lib/extensions/BotCommand.ts
index e86e176..79c7a9f 100644
--- a/src/lib/extensions/BotCommand.ts
+++ b/src/lib/extensions/BotCommand.ts
@@ -4,7 +4,7 @@ import { BotClient } from './BotClient';
export class BotCommand extends Command {
public client: BotClient;
constructor(id: string, options?: CommandOptions) {
- super(id, options)
- this.options = options
+ super(id, options);
+ this.options = options;
}
}