use null for getters (#2723)

This commit is contained in:
Yukine
2018-08-10 10:56:07 +02:00
committed by Crawl
parent be56087c23
commit 147488df89

View File

@@ -65,7 +65,7 @@ class GuildMember extends Base {
get speaking() {
return this.voiceChannel && this.voiceChannel.connection ?
Boolean(this.voiceChannel.connection._speaking.get(this.id)) :
undefined;
null;
}
_patch(data) {