diff --git a/src/client/voice/VoiceConnection.js b/src/client/voice/VoiceConnection.js index a2348ccbf..9aa0aed86 100644 --- a/src/client/voice/VoiceConnection.js +++ b/src/client/voice/VoiceConnection.js @@ -410,7 +410,7 @@ class VoiceConnection extends EventEmitter { * @param {User} user The user that has started/stopped speaking * @param {boolean} speaking Whether or not the user is speaking */ - if (this.status === Constants.Status.CONNECTED) this.emit('speaking', user, speaking); + if (this.status === Constants.VoiceStatus.CONNECTED) this.emit('speaking', user, speaking); guild._memberSpeakUpdate(user_id, speaking); }