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 * 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); this.roles = new RoleStore(this);
@ -6890,8 +6890,8 @@ class MessageEmbed {
this.thumbnail = data.thumbnail ? { this.thumbnail = data.thumbnail ? {
url: data.thumbnail.url, url: data.thumbnail.url,
proxyURL: data.thumbnail.proxy_url, proxyURL: data.thumbnail.proxy_url,
height: data.height, height: data.thumbnail.height,
width: data.width, width: data.thumbnail.width,
} : null; } : null;
/** /**
@ -6905,8 +6905,8 @@ class MessageEmbed {
this.image = data.image ? { this.image = data.image ? {
url: data.image.url, url: data.image.url,
proxyURL: data.image.proxy_url, proxyURL: data.image.proxy_url,
height: data.height, height: data.image.height,
width: data.width, width: data.image.width,
} : null; } : null;
/** /**

File diff suppressed because one or more lines are too long