diff options
author | Tyman <tyman@tyman.tech> | 2021-05-07 20:09:01 +0000 |
---|---|---|
committer | Tyman <tyman@tyman.tech> | 2021-05-07 20:09:01 +0000 |
commit | 45f6cc57ef53163928a5f792e2cf6bcb1d201a6c (patch) | |
tree | 394b2fc9f93db34405958207066d7aa326ee62d7 /src/lib/extensions/BotCommand.ts | |
parent | d4d5d0e822c9570a2ca9ef86cc21073dbbec2087 (diff) | |
download | tanzanite-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.ts | 4 |
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; } } |