small change, removing the command prefix from the bot

This commit is contained in:
Luke Robles 2024-05-17 09:57:20 -07:00
parent 9b6eaa7594
commit 8d0ce55af8
2 changed files with 3 additions and 2 deletions

View File

@ -10,7 +10,7 @@ intents = discord.Intents.default()
intents.message_content = True intents.message_content = True
intents.members = True intents.members = True
intents.reactions = True intents.reactions = True
bot = commands.Bot(command_prefix="!", intents=intents) bot = commands.Bot(intents=intents)
cogfiles = [ cogfiles = [
f"cogs.{filename[:-3]}" f"cogs.{filename[:-3]}"
@ -37,7 +37,7 @@ async def on_ready():
# Testing # Testing
# channel_id = 932476007439552522 # channel_id = 932476007439552522
# message_id = 1235280116087787530 # message_id = 1236011522572943382
# message = await bot.get_channel(channel_id).send(blurb) # message = await bot.get_channel(channel_id).send(blurb)
# Update the message on_ready to match the content we always want to be there # Update the message on_ready to match the content we always want to be there

View File

@ -115,6 +115,7 @@ class Cheeky(commands.Cog):
"https://i.ytimg.com/vi/1Onr4z2fdDM/hq720.jpg", "https://i.ytimg.com/vi/1Onr4z2fdDM/hq720.jpg",
"https://images.genius.com/849ee70350655faade56ce88d3b41c54.1000x899x1.png", "https://images.genius.com/849ee70350655faade56ce88d3b41c54.1000x899x1.png",
"https://pbs.twimg.com/media/GAR5seTbcAAr1Fb.jpg", "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)) embed.set_image(url=random.choice(images))