diff --git a/bots/modules/_mtg.py b/bots/modules/_mtg.py index b605b0a..a1d7cb3 100644 --- a/bots/modules/_mtg.py +++ b/bots/modules/_mtg.py @@ -68,7 +68,7 @@ class MTG(object): while not (len(gen_words) > size and w2 == '.'): gen_words.append(w2.capitalize() if (w1 == '.') else w2) w1, w2 = w2, random.choice(self.MC[w1 + '+' + w2]) - gen_words.append(w2) + gen_words.append(w2) text = ' '.join(gen_words) text = text.replace(' ,', ',').replace(' .', '.') return text