mirror of
https://github.com/danbulant/discord.js
synced 2026-06-19 14:41:36 +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
|
||||
* @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;
|
||||
|
||||
/**
|
||||
|
|
|
|||
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