From b92f8d9c06d28e89619a257d19913c0d3f12d48f Mon Sep 17 00:00:00 2001 From: SpaceEEC Date: Thu, 4 Oct 2018 13:31:26 +0200 Subject: [PATCH] docs(Game): document possible values for type property See #2865 --- src/structures/Presence.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/structures/Presence.js b/src/structures/Presence.js index 38403862b..6e64bc080 100644 --- a/src/structures/Presence.js +++ b/src/structures/Presence.js @@ -58,7 +58,11 @@ class Game { this.name = data.name; /** - * The type of the game status + * The type of the game status, its possible values: + * - 0: Playing + * - 1: Streaming + * - 2: Listening + * - 3: Watching * @type {number} */ this.type = data.type;