diff options
author | Mango0x45 <thomasvoss@live.com> | 2021-01-04 23:12:23 +0000 |
---|---|---|
committer | Mango0x45 <thomasvoss@live.com> | 2021-01-04 23:12:23 +0000 |
commit | 398c9d299bb401c3de0dcaceb23cfa213aeb5170 (patch) | |
tree | b368edbedf9bc9e70a894dd542956881659c1a23 | |
parent | dc4b9ce16987f59ade2b6e030f1bc27cf911a7a9 (diff) | |
parent | 1eeb15e604cca528ff223d4608ef73ab4e0c7582 (diff) | |
download | steve-bot-398c9d299bb401c3de0dcaceb23cfa213aeb5170.tar steve-bot-398c9d299bb401c3de0dcaceb23cfa213aeb5170.tar.gz steve-bot-398c9d299bb401c3de0dcaceb23cfa213aeb5170.tar.bz2 steve-bot-398c9d299bb401c3de0dcaceb23cfa213aeb5170.tar.lz steve-bot-398c9d299bb401c3de0dcaceb23cfa213aeb5170.tar.xz steve-bot-398c9d299bb401c3de0dcaceb23cfa213aeb5170.tar.zst steve-bot-398c9d299bb401c3de0dcaceb23cfa213aeb5170.zip |
Merge branch 'master' of github.com:MCBE-Speedrunning/Steve-Bot
-rwxr-xr-x | cogs/utils.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cogs/utils.py b/cogs/utils.py index 1c1a758..637f344 100755 --- a/cogs/utils.py +++ b/cogs/utils.py @@ -468,9 +468,9 @@ class Utils(commands.Cog): except UnboundLocalError: pass - # 4 minute cooldown + # 24 hour cooldown # should probably be longer - we can't have these kids cheating! - @commands.cooldown(1, 24, commands.BucketType.guild) + @commands.cooldown(1, 86400, commands.BucketType.user) @commands.command() async def timezone(self, ctx, timeZone): """set timezone for fair days/streaks""" |