From e2ceea65baac67b6b9ad2ca24ba1aa38bb81585b Mon Sep 17 00:00:00 2001 From: Amish Shah Date: Sat, 11 Aug 2018 11:48:18 +0100 Subject: [PATCH] Fix default presence for Users --- src/structures/User.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/structures/User.js b/src/structures/User.js index 4098fd95a..26a08a853 100644 --- a/src/structures/User.js +++ b/src/structures/User.js @@ -108,7 +108,7 @@ class User extends Base { for (const guild of this.client.guilds.values()) { if (guild.presences.has(this.id)) return guild.presences.get(this.id); } - return new Presence(this.client); + return new Presence(this.client, { user: { id: this.id } }); } /**