From 112cb18a843d604f43b42d2c8efebdb612228161 Mon Sep 17 00:00:00 2001 From: Gordon Shumway Date: Tue, 18 Feb 2020 07:12:45 -0500 Subject: [PATCH] Jeopardy: update hint help text --- Jeopardy/plugin.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Jeopardy/plugin.py b/Jeopardy/plugin.py index c56020e..fb13753 100644 --- a/Jeopardy/plugin.py +++ b/Jeopardy/plugin.py @@ -759,8 +759,7 @@ class Jeopardy(callbacks.Plugin): 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. - Otherwise repeat the latest hint. + Display the next hint. If max hints reached, repeat the latest hint. If max hints is 0, show blanked out answer. """ channel = msg.channel if channel in self.games: @@ -768,7 +767,6 @@ class Jeopardy(callbacks.Plugin): return else: self.games[channel].hint() - hint = wrap(hint)