Fix star object (again)
This commit is contained in:
parent
ec8d0fece1
commit
d1e49d1358
2 changed files with 3 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue