mirror of
https://github.com/danbulant/discord.js
synced 2026-07-06 11:40:41 +00:00
Webpack build for branch voice-rewrite: f61b57ce10
This commit is contained in:
parent
96e4508336
commit
428d328659
2 changed files with 6 additions and 6 deletions
|
|
@ -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;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
2
discord.voice-rewrite.min.js
vendored
2
discord.voice-rewrite.min.js
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue