From e24c9c271e3f7ba5af986d2f74f692bd13d0ab81 Mon Sep 17 00:00:00 2001 From: Schuyler Cebulskie Date: Mon, 3 Oct 2016 20:25:39 -0400 Subject: [PATCH] Quite possibly fix annoying bug Evie was complaining about --- src/structures/ClientUser.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/structures/ClientUser.js b/src/structures/ClientUser.js index 4e4d18cc7..3900945a9 100644 --- a/src/structures/ClientUser.js +++ b/src/structures/ClientUser.js @@ -130,7 +130,7 @@ class ClientUser extends User { let game = this.localPresence.game; let afk = this.localPresence.afk || this.presence.afk; - if (!game) { + if (!game && this.presence.game) { game = { name: this.presence.game.name, type: this.presence.game.type,