From 75e3ee86fbbc23910f84594909e4a5c7ba10e88d Mon Sep 17 00:00:00 2001 From: Amish Shah Date: Sat, 13 Aug 2016 16:29:19 +0100 Subject: [PATCH] Add userLimit param to voice channel --- src/structures/VoiceChannel.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/structures/VoiceChannel.js b/src/structures/VoiceChannel.js index 9c643820d..4a4f6c253 100644 --- a/src/structures/VoiceChannel.js +++ b/src/structures/VoiceChannel.js @@ -10,6 +10,7 @@ class VoiceChannel extends ServerChannel { setup(data) { super.setup(data); this.bitrate = data.bitrate; + this.userLimit = data.user_limit; } }