diff options
Diffstat (limited to 'cogs')
-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 2d3ffbe..5d96d49 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)]}") |