Webpack build for branch master: 104f3397af

This commit is contained in:
Travis CI 2017-03-30 12:46:41 +00:00
parent e3b7a5e271
commit deaa46c99d
2 changed files with 11 additions and 2 deletions

View file

@ -4397,7 +4397,7 @@ class Guild {
}
/**
* The `#general` TextChannel of the server.
* The `#general` TextChannel of the guild.
* @type {TextChannel}
* @readonly
*/
@ -4405,6 +4405,15 @@ class Guild {
return this.channels.get(this.id);
}
/**
* The `@everyone` Role of the guild.
* @type {Role}
* @readonly
*/
get defaultRole() {
return this.roles.get(this.id);
}
/**
* Returns the GuildMember form of a User object, if the user is present in the guild.
* @param {UserResolvable} user The user that you want to obtain the GuildMember of

File diff suppressed because one or more lines are too long