diff --git a/src/structures/GuildMember.js b/src/structures/GuildMember.js index 79f528ac5..d24670b64 100644 --- a/src/structures/GuildMember.js +++ b/src/structures/GuildMember.js @@ -115,7 +115,7 @@ class GuildMember extends Base { * @readonly */ get presence() { - return this.guild.presences.get(this.id) || new Presence(this.client); + return this.guild.presences.get(this.id) || new Presence(this.client, { user: { id: this.id } }); } /**