mirror of
https://github.com/danbulant/discord.js
synced 2026-06-06 00:02:52 +00:00
parent
e8ab049a67
commit
037e8cf969
1 changed files with 6 additions and 6 deletions
|
|
@ -26,6 +26,12 @@ class Message extends Base {
|
||||||
*/
|
*/
|
||||||
this.channel = channel;
|
this.channel = channel;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Whether this message has been deleted
|
||||||
|
* @type {boolean}
|
||||||
|
*/
|
||||||
|
this.deleted = false;
|
||||||
|
|
||||||
if (data) this._patch(data);
|
if (data) this._patch(data);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -157,12 +163,6 @@ class Message extends Base {
|
||||||
* @private
|
* @private
|
||||||
*/
|
*/
|
||||||
this._edits = [];
|
this._edits = [];
|
||||||
|
|
||||||
/**
|
|
||||||
* Whether this message has been deleted
|
|
||||||
* @type {boolean}
|
|
||||||
*/
|
|
||||||
this.deleted = false;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue