From 31e6ebeff81c355c9e5ea157370f7b5f04cf76ce Mon Sep 17 00:00:00 2001 From: Tanner Date: Fri, 8 Nov 2013 19:09:27 -0600 Subject: [PATCH] Remove repeat from config; remove color --- config.py | 5 ----- plugin.py | 2 +- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/config.py b/config.py index b4383ed..fa6b238 100644 --- a/config.py +++ b/config.py @@ -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?""") diff --git a/plugin.py b/plugin.py index daee7ed..f18c376 100644 --- a/plugin.py +++ b/plugin.py @@ -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]