Bump the auto delete to 60 seconds

This commit is contained in:
Nexus 2023-11-18 18:42:21 +00:00
parent c6277c5398
commit 36e8045a3e
Signed by: nex
GPG key ID: 0FA334385D0B689F

View file

@ -516,7 +516,7 @@ class Events(commands.Cog):
if data.get("file") is not None:
if not isinstance(data["file"], discord.File):
data["file"] = discord.File(data["file"])
data.setdefault("delete_after", 30)
data.setdefault("delete_after", 60)
await message.channel.trigger_typing()
await message.reply(**data)
break