mirror of
https://github.com/danbulant/discord.js
synced 2026-07-08 04:31:05 +00:00
Webpack build for branch master: 8034c0437d
This commit is contained in:
parent
de09b2509b
commit
d78ce71895
2 changed files with 3 additions and 3 deletions
|
|
@ -9500,7 +9500,7 @@ class GuildChannel extends Channel {
|
||||||
* @property {number} [position] The position of the channel
|
* @property {number} [position] The position of the channel
|
||||||
* @property {string} [topic] The topic of the text channel
|
* @property {string} [topic] The topic of the text channel
|
||||||
* @property {number} [bitrate] The bitrate of the voice channel
|
* @property {number} [bitrate] The bitrate of the voice channel
|
||||||
* @property {number} [userLimit] The user limit of the channel
|
* @property {number} [userLimit] The user limit of voice the channel
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -9520,7 +9520,7 @@ class GuildChannel extends Channel {
|
||||||
name: (data.name || this.name).trim(),
|
name: (data.name || this.name).trim(),
|
||||||
topic: data.topic || this.topic,
|
topic: data.topic || this.topic,
|
||||||
position: data.position || this.position,
|
position: data.position || this.position,
|
||||||
bitrate: data.bitrate || this.bitrate,
|
bitrate: data.bitrate || (this.bitrate ? this.bitrate * 1000 : undefined),
|
||||||
user_limit: data.userLimit || this.userLimit,
|
user_limit: data.userLimit || this.userLimit,
|
||||||
},
|
},
|
||||||
reason,
|
reason,
|
||||||
|
|
|
||||||
2
discord.master.min.js
vendored
2
discord.master.min.js
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue