diff options
author | 2019-07-22 13:34:36 -0400 | |
---|---|---|
committer | 2019-07-22 13:34:36 -0400 | |
commit | d8d3a4b194ff58f9331a05c71b2e675f40022e19 (patch) | |
tree | cc540cbb77c2e8f485b88efd84e636615f6040f0 | |
parent | Add missing channel getter (diff) |
Apply suggestions from code review
Update riddle docstring for clarity
Minor change to feedback phrasing
Co-Authored-By: Leon Sandøy <[email protected]>
-rw-r--r-- | bot/seasons/easter/easter_riddle.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/bot/seasons/easter/easter_riddle.py b/bot/seasons/easter/easter_riddle.py index a6900d3b..09d11073 100644 --- a/bot/seasons/easter/easter_riddle.py +++ b/bot/seasons/easter/easter_riddle.py @@ -28,7 +28,11 @@ class EasterRiddle(commands.Cog): @commands.command(aliases=["riddlemethis", "riddleme"]) async def riddle(self, ctx): - """Gives a random riddle questions, then provides 2 hints at 10 second intervals before revealing the answer""" + """ + Gives a random riddle, then provides 2 hints at certain intervals before revealing the answer. + + The duration of the hint interval can be configured by changing the TIMELIMIT constant in this file. + """ if not self.current_channel: self.current_channel = ctx.message.channel @@ -62,7 +66,7 @@ class EasterRiddle(commands.Cog): if self.winners: win_list = " ".join(self.winners) - content = f"Well done {win_list} for getting it correct!" + content = f"Well done {win_list} for getting it right!" self.winners = [] else: content = "Nobody got it right..." |