mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-19 08:59:27 +01:00
Updated to add the configurable single-letter commands.
This commit is contained in:
parent
b3631cb22e
commit
3d81d6627b
@ -65,7 +65,9 @@ conf.registerChannelValue(conf.supybot.plugins.Words.hangman, 'prefix',
|
|||||||
conf.registerChannelValue(conf.supybot.plugins.Words.hangman, 'timeout',
|
conf.registerChannelValue(conf.supybot.plugins.Words.hangman, 'timeout',
|
||||||
registry.Integer(300, """Determines how long a game must be idle before it
|
registry.Integer(300, """Determines how long a game must be idle before it
|
||||||
will be replaced with a new game."""))
|
will be replaced with a new game."""))
|
||||||
|
conf.registerChannelValue(conf.supybot.plugins.Words.hangman, 'letterCommands',
|
||||||
|
registry.Boolean(True, """Determines whether the bot will provide a command
|
||||||
|
for each letter while a game is in progress in a channel."""))
|
||||||
|
|
||||||
def wordsFile():
|
def wordsFile():
|
||||||
return file(conf.supybot.plugins.Words.file())
|
return file(conf.supybot.plugins.Words.file())
|
||||||
@ -180,6 +182,15 @@ class Words(callbacks.Privmsg):
|
|||||||
###
|
###
|
||||||
# HANGMAN
|
# HANGMAN
|
||||||
###
|
###
|
||||||
|
def tokenizedCommand(self, irc, msg, tokens):
|
||||||
|
channel = msg.args[0]
|
||||||
|
if ircutils.isChannel(channel):
|
||||||
|
if channel in self.games:
|
||||||
|
if len(tokens) == 1:
|
||||||
|
c = tokens[0]
|
||||||
|
if c.isalpha():
|
||||||
|
self.guess(irc, msg, [c])
|
||||||
|
|
||||||
games = ircutils.IrcDict()
|
games = ircutils.IrcDict()
|
||||||
validLetters = list(string.ascii_lowercase)
|
validLetters = list(string.ascii_lowercase)
|
||||||
|
|
||||||
|
@ -54,6 +54,7 @@ class WordsTestCase(ChannelPluginTestCase, PluginDocumentation):
|
|||||||
self.assertNotError('guess hello')
|
self.assertNotError('guess hello')
|
||||||
self.assertNotError('hangman')
|
self.assertNotError('hangman')
|
||||||
self.assertNotError('guess j')
|
self.assertNotError('guess j')
|
||||||
|
self.assertNotError('g')
|
||||||
self.assertNotError('letters')
|
self.assertNotError('letters')
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user