diff --git a/lib/Voice/VoiceConnection.js b/lib/Voice/VoiceConnection.js index 684ea65e1..12d2c1c6c 100644 --- a/lib/Voice/VoiceConnection.js +++ b/lib/Voice/VoiceConnection.js @@ -99,7 +99,7 @@ var VoiceConnection = (function (_EventEmitter) { this.client.internal.sendWS({ op: 4, d: { - guild_id: null, + guild_id: this.server.id, channel_id: null, self_mute: true, self_deaf: false diff --git a/src/Voice/VoiceConnection.js b/src/Voice/VoiceConnection.js index 9e43cfdff..daa2c47ad 100644 --- a/src/Voice/VoiceConnection.js +++ b/src/Voice/VoiceConnection.js @@ -62,7 +62,7 @@ export default class VoiceConnection extends EventEmitter { { op : 4, d : { - guild_id : null, + guild_id : this.server.id, channel_id : null, self_mute : true, self_deaf : false