File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -91,7 +91,8 @@ def __init__(self, bot):
9191 self .bot = bot
9292 # -------------------------------------
9393 self .properties = {}
94- # "guild_id": str -> {
94+ # FORMAT OF DICT self.properties:
95+ # [str(guild.id)] -> {
9596 # "is_playing": False,
9697 # "currently_playing_player": None,
9798 # "current": -1,
@@ -103,7 +104,8 @@ def __init__(self, bot):
103104 # }
104105 # -------------------------------------
105106 self .music_queue = {}
106- # [guild.id] -> [0 player | 1 ctx | 2 url(from_user) | 3 stream_or_not]
107+ # FORMAT OF DICT self.music_queue:
108+ # [str(guild.id)] -> [0 player | 1 ctx | 2 url(from_user) | 3 stream_or_not]
107109 # -------------------------------------
108110 return
109111 # ----------------------------------------------------------------------------------------------------------------------
You can’t perform that action at this time.
0 commit comments