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 */