mirror of
https://github.com/danbulant/discord.js
synced 2026-07-05 19:20:42 +00:00
Webpack build for branch master: fdb8f046b5
This commit is contained in:
parent
d5044f1843
commit
9db3e4b434
2 changed files with 3 additions and 3 deletions
|
|
@ -9054,7 +9054,7 @@ class MessageEmbed {
|
||||||
* @returns {MessageEmbed} This embed
|
* @returns {MessageEmbed} This embed
|
||||||
*/
|
*/
|
||||||
setTimestamp(timestamp = new Date()) {
|
setTimestamp(timestamp = new Date()) {
|
||||||
this.timestamp = timestamp;
|
this.timestamp = timestamp.getTime();
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -9086,7 +9086,7 @@ class MessageEmbed {
|
||||||
type: 'rich',
|
type: 'rich',
|
||||||
description: this.description,
|
description: this.description,
|
||||||
url: this.url,
|
url: this.url,
|
||||||
timestamp: this.timestamp,
|
timestamp: this.timestamp ? new Date(this.timestamp) : null,
|
||||||
color: this.color,
|
color: this.color,
|
||||||
fields: this.fields,
|
fields: this.fields,
|
||||||
files: this.files,
|
files: this.files,
|
||||||
|
|
|
||||||
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