mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-10 00:23:30 +01:00
Fix MessageMentions properties always being null or empty (#1357)
This commit is contained in:
@@ -127,7 +127,7 @@ class Message {
|
||||
* All valid mentions that the message contains
|
||||
* @type {MessageMentions}
|
||||
*/
|
||||
this.mentions = new Mentions(this, data.mentions, data.mentions_roles, data.mention_everyone);
|
||||
this.mentions = new Mentions(this, data.mentions, data.mention_roles, data.mention_everyone);
|
||||
|
||||
/**
|
||||
* ID of the webhook that sent the message, if applicable
|
||||
|
||||
Reference in New Issue
Block a user