]> gitweb.pimeys.fr Git - bots/hung.git/commitdiff
Fucking dots
authorHung IRC Bot <hung@crans.org>
Tue, 21 May 2013 18:51:54 +0000 (20:51 +0200)
committerHung IRC Bot <hung@crans.org>
Tue, 21 May 2013 18:51:54 +0000 (20:51 +0200)
config.py
hung.py

index 5b16ff154ec1707fee7067caf04c8be48899ccb1..0eda4499bef4c5ff596f68aa8ee959d0b98b5375 100644 (file)
--- a/config.py
+++ b/config.py
@@ -48,3 +48,5 @@ leave_messages=["On finira la partie plus tard :p"]
 
 #: Nombre de chances avant d'être pendu
 lives = 7
+#: Caractères qui sont déjà affichés au début si il sont dans le mot
+non_guess_chars = "'-()."
diff --git a/hung.py b/hung.py
index 674c09ebb04888cd963a64b1004cf61c5325ccfa..99c934dcb6d9fba8cab60ef81de21a8a4cf33eda 100755 (executable)
--- a/hung.py
+++ b/hung.py
@@ -325,7 +325,7 @@ class Hung(ircbot.SingleServerIRCBot):
         indice = random.randrange(0,len(mots))
         mot,definition=mots[indice],defs[indice]
         # ' et - sont considérés comme déjà devinés
-        mot = [(lettre,lettre in "'-()") for lettre in list(mot)]
+        mot = [(lettre,lettre in config.non_guess_chars) for lettre in list(mot)]
         self.play_status[canal]=[mot,definition,{}]
         self.tried_letters[canal] = set ()
         self.lives[canal] = config.lives