diff options
author | Luca Matei Pintilie <luca@lucamatei.com> | 2024-08-09 19:35:30 +0000 |
---|---|---|
committer | Luca Matei Pintilie <luca@lucamatei.com> | 2024-08-09 19:35:30 +0000 |
commit | 2ca05c8bd9d5c0aca825a9a1505f3000f24bd43e (patch) | |
tree | 90bfe2a1f1f0b4d7b89ea67490152d897f255030 /cogs/utils.py | |
parent | 48dd788fb7018aeac66de9a4713863f6ac5f022a (diff) | |
download | steve-bot-remove-dupes.tar steve-bot-remove-dupes.tar.gz steve-bot-remove-dupes.tar.bz2 steve-bot-remove-dupes.tar.lz steve-bot-remove-dupes.tar.xz steve-bot-remove-dupes.tar.zst steve-bot-remove-dupes.zip |
Add Active Role implementation and increase src.py scheduled job to 30minremove-dupes
Increasing to 30min as the jobs can overlap and overwrite each other,
which is not a good idea. Helps with rate limiting as well.
Diffstat (limited to 'cogs/utils.py')
-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 a9dc2fe..e13080a 100755 --- a/cogs/utils.py +++ b/cogs/utils.py @@ -163,7 +163,7 @@ class Utils(commands.Cog): # Add extra comment based on number of sleepHrs if sleepHrs == 0: await ctx.send( - f"{discord.utils.escape_mentions(ctx.message.author.display_name)} -> your sleep is 0 hours long - nice try \:D" + f"{discord.utils.escape_mentions(ctx.message.author.display_name)} -> your sleep is 0 hours long - nice try :D" ) elif sleepHrs <= 5: if sleepHrs == 1: |