From 8d0ce55af8fffb7febd659895a86a0f84733404f Mon Sep 17 00:00:00 2001 From: Luke Robles Date: Fri, 17 May 2024 09:57:20 -0700 Subject: [PATCH] small change, removing the command prefix from the bot --- app/bot.py | 4 ++-- app/cogs/cheeky_functions.py | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/app/bot.py b/app/bot.py index 1ce2303f..b21781ea 100755 --- a/app/bot.py +++ b/app/bot.py @@ -10,7 +10,7 @@ intents = discord.Intents.default() intents.message_content = True intents.members = True intents.reactions = True -bot = commands.Bot(command_prefix="!", intents=intents) +bot = commands.Bot(intents=intents) cogfiles = [ f"cogs.{filename[:-3]}" @@ -37,7 +37,7 @@ async def on_ready(): # Testing # channel_id = 932476007439552522 - # message_id = 1235280116087787530 + # message_id = 1236011522572943382 # message = await bot.get_channel(channel_id).send(blurb) # Update the message on_ready to match the content we always want to be there diff --git a/app/cogs/cheeky_functions.py b/app/cogs/cheeky_functions.py index d826bea8..57a7c001 100755 --- a/app/cogs/cheeky_functions.py +++ b/app/cogs/cheeky_functions.py @@ -115,6 +115,7 @@ class Cheeky(commands.Cog): "https://i.ytimg.com/vi/1Onr4z2fdDM/hq720.jpg", "https://images.genius.com/849ee70350655faade56ce88d3b41c54.1000x899x1.png", "https://pbs.twimg.com/media/GAR5seTbcAAr1Fb.jpg", + "https://static.wikia.nocookie.net/jabroni-memes/images/a/af/DRACULAFLOW1.png/revision/latest?cb=20240307002406", ] embed.set_image(url=random.choice(images))