We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5687883 commit 97ee6b3Copy full SHA for 97ee6b3
1 file changed
cogs/commands/chatgpt.py
@@ -188,7 +188,7 @@ async def in_cooldown(self, ctx):
188
# Limit with 60s cooldown
189
now = datetime.now(timezone.utc)
190
if self.cooldowns.get(ctx.channel.id):
191
- cutoff = now - timedelta(seconds=60)
+ cutoff = now - timedelta(seconds=10)
192
if ctx.message.created_at > cutoff:
193
await ctx.message.add_reaction("⏱️")
194
return True
0 commit comments