Remove repeat from config; remove color

This commit is contained in:
Tanner 2013-11-08 19:09:27 -06:00
parent 2c23a5b2b3
commit 31e6ebeff8
2 changed files with 1 additions and 6 deletions

View File

@ -40,11 +40,6 @@ conf.registerChannelValue(TriviaTime, 'showHintCommandKAOS',
"""The command for showing the remaining KAOS""")
)
conf.registerChannelValue(TriviaTime, 'repeatCommand',
registry.NormalizedString("""repeat""",
"""The command to repeat the question""")
)
conf.registerChannelValue(TriviaTime, 'showPlayerStats',
registry.Boolean(True,
"""Show player stats after correct answer?""")

View File

@ -1231,7 +1231,7 @@ class TriviaTime(callbacks.Plugin):
# responsible for stopping a timer/thread after being told to stop
self.active = False
self.removeEvent()
self.sendMessage(self.registryValue('stopped'), 2)
self.sendMessage(self.registryValue('stopped'))
channelCanonical = ircutils.toLower(self.channel)
if channelCanonical in self.games:
del self.games[channelCanonical]