diff --git a/src/structures/Guild.js b/src/structures/Guild.js index bfa8406f8..296adb4b8 100644 --- a/src/structures/Guild.js +++ b/src/structures/Guild.js @@ -728,7 +728,7 @@ class Guild { const member = new GuildMember(this, guildUser); this.members.set(member.id, member); - if (this._rawVoiceStates && this._rawVoiceStates.get(member.user.id)) { + if (this._rawVoiceStates && this._rawVoiceStates.has(member.user.id)) { const voiceState = this._rawVoiceStates.get(member.user.id); member.serverMute = voiceState.mute; member.serverDeaf = voiceState.deaf;