This commit is contained in:
Travis CI 2016-11-27 21:25:07 +00:00
parent 2c485a0b0d
commit 37e1559840
2 changed files with 2 additions and 2 deletions

View file

@ -6047,7 +6047,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;

File diff suppressed because one or more lines are too long