diff --git a/jarvis/__init__.py b/jarvis/__init__.py index 5c568dc..7b47be6 100644 --- a/jarvis/__init__.py +++ b/jarvis/__init__.py @@ -36,7 +36,7 @@ jarvis = commands.Bot( ) slash = SlashCommand(jarvis, sync_commands=True, sync_on_cog_reload=True) jarvis_self = Process() -__version__ = "1.1.0" +__version__ = "1.1.1" db = DBManager(get_config().mongo).mongo diff --git a/jarvis/db/types.py b/jarvis/db/types.py index c50115a..f7dc3ed 100644 --- a/jarvis/db/types.py +++ b/jarvis/db/types.py @@ -460,6 +460,7 @@ class Star(MongoObject): :param _id: MongoDB ID :param index: Starboard star index :param message: Star Message ID + :param channel: Star Channel ID :param starboard: Starboard Channel ID :param guild: Starboard Guild ID :param admin: ID of admin who created star @@ -468,6 +469,7 @@ class Star(MongoObject): index: int message: int + channel: int starboard: int guild: int admin: int