diff --git a/src/structures/ClientUser.js b/src/structures/ClientUser.js index 75b26a7ee..31564ae20 100644 --- a/src/structures/ClientUser.js +++ b/src/structures/ClientUser.js @@ -271,7 +271,7 @@ class ClientUser extends User { * @returns {Promise} */ setActivity(name, { url, type } = {}) { - if (!name) return this.setPresence({ activity: null }); + if (!name) return this.setPresence({ game: null }); return this.setPresence({ game: { name, type, url }, });