small change, removing the command prefix from the bot
All checks were successful
Build and push / changes (push) Successful in 4s
Build and push / Lint-Python (push) Successful in 6s
Build and push / Build-and-Push-Docker (push) Successful in 1m43s
Build and push / sync-argocd-app (push) Successful in 4s

This commit is contained in:
Luke R 2024-05-17 09:57:20 -07:00
parent 8e500dd124
commit e318273568
2 changed files with 3 additions and 2 deletions

View File

@ -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

View File

@ -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))