diff options
author | Samot19 <81269200+Samot19@users.noreply.github.com> | 2021-07-03 20:09:39 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-03 20:09:39 +0000 |
commit | 558a3dcaf6c4aa2ee15e25fec1d4847a49a115ae (patch) | |
tree | 2d3872ab85b199e172c04ac6d03f17953c2583b0 | |
parent | c90388b12441516624c99c86c5f8f39ba2557ac6 (diff) | |
download | steve-bot-558a3dcaf6c4aa2ee15e25fec1d4847a49a115ae.tar steve-bot-558a3dcaf6c4aa2ee15e25fec1d4847a49a115ae.tar.gz steve-bot-558a3dcaf6c4aa2ee15e25fec1d4847a49a115ae.tar.bz2 steve-bot-558a3dcaf6c4aa2ee15e25fec1d4847a49a115ae.tar.lz steve-bot-558a3dcaf6c4aa2ee15e25fec1d4847a49a115ae.tar.xz steve-bot-558a3dcaf6c4aa2ee15e25fec1d4847a49a115ae.tar.zst steve-bot-558a3dcaf6c4aa2ee15e25fec1d4847a49a115ae.zip |
Adjust cooldown to per user.
-rwxr-xr-x | cogs/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cogs/utils.py b/cogs/utils.py index 831f5b2..1140e8c 100755 --- a/cogs/utils.py +++ b/cogs/utils.py @@ -519,7 +519,7 @@ class Utils(commands.Cog): f"{discord.utils.escape_mentions(ctx.message.author.display_name)} your timezone has been set to {timeZone}" ) - @commands.cooldown(2, 60, commands.BucketType.guild) + @commands.cooldown(2, 60, commands.BucketType.user) @commands.command() async def fboard(self, ctx, requested: str = "streak"): """Show fair leaderboard (day or streak).""" |