diff options
author | Parker <contact@pkrm.dev> | 2024-04-12 00:29:24 -0500 |
---|---|---|
committer | Parker <contact@pkrm.dev> | 2024-04-12 00:29:24 -0500 |
commit | 66bf2a6cc21590a938a03913f36586744c871f57 (patch) | |
tree | 54a37f2e5c2f48ea6178fed8b88cb6d7bf356047 /code/bot.py | |
parent | 2ebd5421b7f37234dc400ed4f6cf2e6b0c62e0ed (diff) |
Create autoplay feature
Use ChatGPT to get song recommendations based on current song queue.
Diffstat (limited to 'code/bot.py')
-rw-r--r-- | code/bot.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/code/bot.py b/code/bot.py index b1996ab..983e92f 100644 --- a/code/bot.py +++ b/code/bot.py @@ -29,6 +29,7 @@ class MyBot(commands.Bot): bot = MyBot() bot.remove_command("help") bot.temp_command_count = {} # command_name: count +bot.autoplay = [] # guild_id, guild_id, etc. @bot.event |