fixed dalle3 command

This commit is contained in:
phixxy 2024-02-20 20:56:14 -08:00
parent 299d8e677f
commit 13ae53cdad
2 changed files with 13 additions and 10 deletions

View file

@ -32,6 +32,10 @@ async def on_ready():
@bot.event
async def on_message(ctx):
if ctx.channel.type == discord.ChannelType.private:
return
if ctx.author.bot:
return
try:
await bot.process_commands(ctx)
except commands.CommandNotFound: