Bump dependencies and add typing event handler

This commit is contained in:
Max Isom 2020-03-27 17:14:08 -05:00
parent a2950ed722
commit 7703506aae
5 changed files with 34 additions and 11 deletions

View file

@ -7,6 +7,7 @@ import Command from './commands';
import debug from './utils/debug';
import NaturalLanguage from './services/natural-language-commands';
import handleGuildCreate from './events/guild-create';
import handleTypingStart from './events/handle-typing-start';
import handleVoiceStateUpdate from './events/voice-state-update';
import errorMsg from './utils/error-msg';
import {isUserInVoice} from './utils/channels';
@ -104,6 +105,7 @@ export default class {
// Register event handlers
this.client.on('guildCreate', handleGuildCreate);
this.client.on('typingStart', handleTypingStart);
this.client.on('voiceStateUpdate', handleVoiceStateUpdate);
return this.client.login(this.token);