From d1e49d13584d238da2c0ca7a66166bdf6632f2ec Mon Sep 17 00:00:00 2001 From: Zevaryx Date: Thu, 22 Jul 2021 08:29:02 -0600 Subject: [PATCH] Fix star object (again) --- jarvis/__init__.py | 2 +- jarvis/db/types.py | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) 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