Webpack build for branch voice-rewrite: f61b57ce10

This commit is contained in:
Travis CI 2018-01-15 03:49:02 +00:00
parent 96e4508336
commit 428d328659
2 changed files with 6 additions and 6 deletions

View file

@ -4547,7 +4547,7 @@ class Guild extends Base {
/**
* A collection of roles that are in this guild. The key is the role's ID, the value is the role
* @type {Collection<Snowflake, Role>}
* @type {RoleStore<Snowflake, Role>}
*/
this.roles = new RoleStore(this);
@ -6890,8 +6890,8 @@ class MessageEmbed {
this.thumbnail = data.thumbnail ? {
url: data.thumbnail.url,
proxyURL: data.thumbnail.proxy_url,
height: data.height,
width: data.width,
height: data.thumbnail.height,
width: data.thumbnail.width,
} : null;
/**
@ -6905,8 +6905,8 @@ class MessageEmbed {
this.image = data.image ? {
url: data.image.url,
proxyURL: data.image.proxy_url,
height: data.height,
width: data.width,
height: data.image.height,
width: data.image.width,
} : null;
/**

File diff suppressed because one or more lines are too long