diff options
author | TymanWasTaken <32660892+tymanwastaken@users.noreply.github.com> | 2021-04-27 21:06:22 -0600 |
---|---|---|
committer | TymanWasTaken <32660892+tymanwastaken@users.noreply.github.com> | 2021-04-27 21:06:22 -0600 |
commit | 763fb7d98c3accbb21adf035a7cf0a83cb9533c9 (patch) | |
tree | 9d333fbca2a2a8e19d79904a4e29226174925cfc /src/listeners/client | |
download | tanzanite-763fb7d98c3accbb21adf035a7cf0a83cb9533c9.tar.gz tanzanite-763fb7d98c3accbb21adf035a7cf0a83cb9533c9.tar.bz2 tanzanite-763fb7d98c3accbb21adf035a7cf0a83cb9533c9.zip |
legit just copy utilibot v2 code
Diffstat (limited to 'src/listeners/client')
-rw-r--r-- | src/listeners/client/ReadyListener.ts | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/listeners/client/ReadyListener.ts b/src/listeners/client/ReadyListener.ts new file mode 100644 index 0000000..ae510f6 --- /dev/null +++ b/src/listeners/client/ReadyListener.ts @@ -0,0 +1,16 @@ +import { BotListener } from '../../lib/extensions/BotListener'; + +export default class CommandBlockedListener extends BotListener { + public constructor() { + super('ready', { + emitter: 'client', + event: 'ready' + }); + } + + public async exec(): Promise<void> { + await this.client.util.info( + `Sucessfully logged in as ${this.client.user.tag}` + ); + } +} |