Skip to content

Commit

Permalink
Update music.py
Browse files Browse the repository at this point in the history
  • Loading branch information
code-chaser committed Jun 25, 2022
1 parent 340050f commit bea8d00
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/cogs/music.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,8 @@ def __init__(self, bot):
self.bot = bot
# -------------------------------------
self.properties = {}
# "guild_id": str -> {
# FORMAT OF DICT self.properties:
# [str(guild.id)] -> {
# "is_playing": False,
# "currently_playing_player": None,
# "current": -1,
Expand All @@ -103,7 +104,8 @@ def __init__(self, bot):
# }
# -------------------------------------
self.music_queue = {}
# [guild.id] -> [0 player | 1 ctx | 2 url(from_user) | 3 stream_or_not]
# FORMAT OF DICT self.music_queue:
# [str(guild.id)] -> [0 player | 1 ctx | 2 url(from_user) | 3 stream_or_not]
# -------------------------------------
return
# ----------------------------------------------------------------------------------------------------------------------
Expand Down

0 comments on commit bea8d00

Please sign in to comment.