Skip to content

Commit 97ee6b3

Browse files
authored
Reduce !chat cooldown
1 parent 5687883 commit 97ee6b3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cogs/commands/chatgpt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ async def in_cooldown(self, ctx):
188188
# Limit with 60s cooldown
189189
now = datetime.now(timezone.utc)
190190
if self.cooldowns.get(ctx.channel.id):
191-
cutoff = now - timedelta(seconds=60)
191+
cutoff = now - timedelta(seconds=10)
192192
if ctx.message.created_at > cutoff:
193193
await ctx.message.add_reaction("⏱️")
194194
return True

0 commit comments

Comments
 (0)