From f8f8f418f3c51b6a885a1b6b7cd46c38c070b3bc Mon Sep 17 00:00:00 2001 From: Rapptz Date: Mon, 5 Mar 2018 11:01:46 -0500 Subject: Split Game object to separate Activity subtypes for Rich Presences. This is a massive breaking change. * All references to "game" have been renamed to "activity" * Activity objects contain a majority of the rich presence information * Game and Streaming are subtypes for memory optimisation purposes for the more common cases. * Introduce a more specialised read-only type, Spotify, for the official Spotify integration to make it easier to use. --- discord/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'discord/__init__.py') diff --git a/discord/__init__.py b/discord/__init__.py index 20c81853..3f605a0a 100644 --- a/discord/__init__.py +++ b/discord/__init__.py @@ -19,8 +19,8 @@ __version__ = '1.0.0a' from .client import Client, AppInfo from .user import User, ClientUser, Profile -from .game import Game from .emoji import Emoji, PartialEmoji +from .activity import * from .channel import * from .guild import Guild from .relationship import Relationship -- cgit v1.2.3