Merge branch 'master' into voice-rewrite

This commit is contained in:
iCrawl
2018-01-15 04:45:48 +01:00
3 changed files with 6 additions and 6 deletions

View File

@@ -40,7 +40,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);

View File

@@ -67,8 +67,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;
/**
@@ -82,8 +82,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;
/**