Jeopardy: update hint help text

This commit is contained in:
Gordon Shumway 2020-02-18 07:12:45 -05:00 committed by GitHub
parent d91bd6d30d
commit 112cb18a84
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -759,8 +759,7 @@ class Jeopardy(callbacks.Plugin):
def hint(self, irc, msg, args): def hint(self, irc, msg, args):
""" """
Show hint. If timeout = 0 force a new hint. If game set for no hints, show the blanked out answer. Display the next hint. If max hints reached, repeat the latest hint. If max hints is 0, show blanked out answer.
Otherwise repeat the latest hint.
""" """
channel = msg.channel channel = msg.channel
if channel in self.games: if channel in self.games:
@ -768,7 +767,6 @@ class Jeopardy(callbacks.Plugin):
return return
else: else:
self.games[channel].hint() self.games[channel].hint()
hint = wrap(hint) hint = wrap(hint)