From a48c286d15d1aa10791244fffaf12c7e4037a2f5 Mon Sep 17 00:00:00 2001 From: Francisco Lobos Date: Wed, 8 Jan 2014 17:58:26 -0300 Subject: [PATCH] Arreglado ataque con 'ch'. --- home/silabea.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home/silabea.py b/home/silabea.py index 12a7001..171c57e 100644 --- a/home/silabea.py +++ b/home/silabea.py @@ -76,7 +76,7 @@ def consonante(letra): def ataque_complejo(c): if len(c) < 2: return False - return True if (c[0] in [u'b', u'c', u'f', u'g', u'p', u't'] and c[1] in [u'l', u'r'] and c != u"dl") or c in [u'dr', u'kr', u'll', u'rr'] else False + return True if (c[0] in [u'b', u'c', u'f', u'g', u'p', u't'] and c[1] in [u'l', u'r'] and c != u"dl") or c in [u'dr', u'kr', u'll', u'rr', u'ch'] else False def guegui(c):