aboutsummaryrefslogtreecommitdiff
path: root/cogs
diff options
context:
space:
mode:
authorLuca Matei Pintilie <luca@lucamatei.com>2024-12-08 13:27:00 +0000
committerLuca Matei Pintilie <luca@lucamatei.com>2024-12-08 13:27:00 +0000
commita0774f8feca260f8fe7d05401160455580c7af00 (patch)
tree476fb58a65bc950259e8e9f0c89ac69ac9166bb6 /cogs
parent2c44c378eb2717bdb5b6a5de7628d8dfb4835036 (diff)
downloadsteve-bot-a0774f8feca260f8fe7d05401160455580c7af00.tar
steve-bot-a0774f8feca260f8fe7d05401160455580c7af00.tar.gz
steve-bot-a0774f8feca260f8fe7d05401160455580c7af00.tar.bz2
steve-bot-a0774f8feca260f8fe7d05401160455580c7af00.tar.lz
steve-bot-a0774f8feca260f8fe7d05401160455580c7af00.tar.xz
steve-bot-a0774f8feca260f8fe7d05401160455580c7af00.tar.zst
steve-bot-a0774f8feca260f8fe7d05401160455580c7af00.zip
findblock: reduce cooldown fromn 25s per guild to 2s per userHEADmaster
Diffstat (limited to 'cogs')
-rwxr-xr-xcogs/utils.py2
1 files changed, 1 insertions, 1 deletions
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"""