Remove partial classes (#1794)

* remove partial objects

* remove partial evil

* Update Invite.js

* Update Invite.js
This commit is contained in:
Gus Caplan
2017-08-17 11:49:41 -07:00
committed by Crawl
parent fff8b764af
commit 9b97fe292f
6 changed files with 12 additions and 110 deletions

View File

@@ -14,7 +14,7 @@ class VoiceChannel extends GuildChannel {
* The members in this voice channel
* @type {Collection<Snowflake, GuildMember>}
*/
this.members = new Collection();
Object.defineProperty(this, 'members', { value: new Collection() });
}
setup(data) {