diff options
author | AnInternetTroll <lucafulger@gmail.com> | 2020-06-24 22:41:26 +0000 |
---|---|---|
committer | AnInternetTroll <lucafulger@gmail.com> | 2020-06-24 22:41:26 +0000 |
commit | 4a2384339f430ca11090c849b3adf531531e0ff1 (patch) | |
tree | 67915e4337a8bfa2cdad12984ace527e8a42ecb5 | |
parent | a9a478c57d09874ad25e88dc6d54eb2019b92afc (diff) | |
parent | 72611a078b4b7164ebd19334070243b4c35d000c (diff) | |
download | steve-bot-4a2384339f430ca11090c849b3adf531531e0ff1.tar steve-bot-4a2384339f430ca11090c849b3adf531531e0ff1.tar.gz steve-bot-4a2384339f430ca11090c849b3adf531531e0ff1.tar.bz2 steve-bot-4a2384339f430ca11090c849b3adf531531e0ff1.tar.lz steve-bot-4a2384339f430ca11090c849b3adf531531e0ff1.tar.xz steve-bot-4a2384339f430ca11090c849b3adf531531e0ff1.tar.zst steve-bot-4a2384339f430ca11090c849b3adf531531e0ff1.zip |
Merge branch 'master' of https://github.com/AnInternetTroll/mcbeDiscordBot
Diffstat (limited to '')
-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 36ce981..0da89fe 100755 --- a/cogs/utils.py +++ b/cogs/utils.py @@ -112,8 +112,8 @@ class Utils(commands.Cog): if sleepHrs == 1: s = '' else: - s = 's' - await ctx.send(f"{ctx.message.author.display_name} -> your sleep is {sleepHrs} hour{s} long - {lessSleepMsg[randint(0, len(lessSleepMsg) - 1)]}") + s = 's' + await ctx.send(f"{ctx.message.author.display_name} -> your sleep is {sleepHrs} hour{s} long - {lessSleepMsg[randint(0, len(lessSleepMsg) - 1)]}") else: await ctx.send(f"{ctx.message.author.display_name} -> your sleep is {sleepHrs} hours long - {moreSleepMsg[randint(0, len(moreSleepMsg) - 1)]}") |