diff --git a/main.py b/main.py index bd0d1ed..0ab139b 100644 --- a/main.py +++ b/main.py @@ -328,6 +328,12 @@ async def on_message(message: discord.Message): if content.find("goon") != -1: response = "gooning is not allowed you fucking weirdo" await decrease_mood(message) + elif content.startswith("play some music"): + song_name = choice(os.listdir("music")) + await message.reply("ok ill play " + song_name.rsplit(".", 1)[0]) + file = os.path.join("music/", song_name) + await send_voice_message(file, message.channel) + return elif content.startswith("speak "): content = content.removeprefix("speak ") await send_tts_message(content, message.channel) diff --git a/music/love story.mp3 b/music/love story.mp3 new file mode 100644 index 0000000..5972c38 Binary files /dev/null and b/music/love story.mp3 differ diff --git a/music/silver springs.mp3 b/music/silver springs.mp3 new file mode 100644 index 0000000..8a168b8 Binary files /dev/null and b/music/silver springs.mp3 differ diff --git a/music/the portal radio song.mp3 b/music/the portal radio song.mp3 new file mode 100644 index 0000000..d0dbaed Binary files /dev/null and b/music/the portal radio song.mp3 differ