Webpack build for branch 11.3-dev: b5ff309bf9

This commit is contained in:
Travis CI 2018-01-20 22:38:33 +00:00
parent ed6a02394e
commit 114c0e3de0
2 changed files with 6 additions and 1 deletions

View file

@ -3325,6 +3325,7 @@ class Channel {
* * `group` - a Group DM channel * * `group` - a Group DM channel
* * `text` - a guild text channel * * `text` - a guild text channel
* * `voice` - a guild voice channel * * `voice` - a guild voice channel
* * `category` - a guild category channel
* @type {string} * @type {string}
*/ */
this.type = null; this.type = null;
@ -18696,6 +18697,10 @@ const GuildChannel = __webpack_require__(18);
* @extends {GuildChannel} * @extends {GuildChannel}
*/ */
class CategoryChannel extends GuildChannel { class CategoryChannel extends GuildChannel {
constructor(guild, data) {
super(guild, data);
this.type = 'category';
}
/** /**
* The channels that are part of this category * The channels that are part of this category
* @type {?Collection<Snowflake, GuildChannel>} * @type {?Collection<Snowflake, GuildChannel>}

File diff suppressed because one or more lines are too long