From e7138f227dd4505401efa2d1567bbb168aceabb8 Mon Sep 17 00:00:00 2001 From: Skillz Date: Fri, 25 Sep 2020 10:23:42 -0400 Subject: [PATCH] remove game prop --- src/types/discord.ts | 2 -- src/types/guild.ts | 2 -- 2 files changed, 4 deletions(-) diff --git a/src/types/discord.ts b/src/types/discord.ts index b063e1e67..9154cc4d1 100644 --- a/src/types/discord.ts +++ b/src/types/discord.ts @@ -230,8 +230,6 @@ export interface WebhookUpdatePayload { export interface PresenceUpdatePayload { /** The user presence is being updated for. */ user: PartialUser; - /** null, or the user's current activity */ - game: Activity | null; /** The id of the guild */ guild_id: string; /** Either idle, dnd, online, or offline */ diff --git a/src/types/guild.ts b/src/types/guild.ts index dda73109a..bc98453f8 100644 --- a/src/types/guild.ts +++ b/src/types/guild.ts @@ -561,8 +561,6 @@ export interface Presence { user: UserPayload; /** The roles this user is in */ roles: string[]; - /** null, or the user's current activity */ - game: Activity | null; /** The id of the guild */ guild_id: string; /** Either idle */