From a0774f8feca260f8fe7d05401160455580c7af00 Mon Sep 17 00:00:00 2001 From: Luca Matei Pintilie Date: Sun, 8 Dec 2024 14:27:00 +0100 Subject: findblock: reduce cooldown fromn 25s per guild to 2s per user --- cogs/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/utils.py b/cogs/utils.py index d798f30..344ed1c 100755 --- a/cogs/utils.py +++ b/cogs/utils.py @@ -112,7 +112,7 @@ class Utils(commands.Cog): async def ping(self, ctx): await ctx.send(f"Pong! {round(self.bot.latency*1000)}ms") - @commands.cooldown(1, 25, commands.BucketType.guild) + @commands.cooldown(1, 2, commands.BucketType.user) @commands.command() async def findblock(self, ctx): """Simulate the UGBC experience""" -- cgit v1.2.3