diff --git a/Jeopardy/plugin.py b/Jeopardy/plugin.py index 586ddb2..b114522 100644 --- a/Jeopardy/plugin.py +++ b/Jeopardy/plugin.py @@ -633,7 +633,7 @@ class Jeopardy(callbacks.Plugin): len(str(self.timeout)) ) reply = self.hint_template.render( - hint=self.currentHint, time=timeLeft, points=points, hintNum = self.hints + hint=self.currentHint, time=timeLeft, points=points, hintNum = self.hints, numHints = self.numHints ) if self.showHints or self.showTime: @@ -645,7 +645,7 @@ class Jeopardy(callbacks.Plugin): schedule.addEvent(event, eventTime, "event_%s" % self.channel) else: reply = self.hint_template.render( - hint=self.currentHint, time=None, points=points, hintNum = self.hints + hint=self.currentHint, time=None, points=points, hintNum = self.hints, numHints = self.numHints ) self.reply(reply) self.hints += 1