Fix travis builds

This commit is contained in:
Amish Shah
2016-10-25 14:38:56 +01:00
parent 91ba59c43d
commit 5844bbb54c
6 changed files with 9 additions and 5 deletions

View File

@@ -59,6 +59,7 @@ class AudioPlayer extends EventEmitter {
dispatcher.on('end', () => this.cleanup(dispatcher.stream, 'disp ended'));
dispatcher.on('speaking', value => this.voiceConnection.setSpeaking(value));
this.currentDispatcher = dispatcher;
dispatcher.on('debug', m => this.emit('debug', `stream dispatch - ${m}`));
return dispatcher;
}