home · contact · privacy
Shorten the default markov text length.
[plomlombot-irc.git] / plomlombot.py
index 8813498594f0a3ca4d453a366eac6ea246154bc7..11a8206ab4691eaf500cedbb0873efeb532da561 100755 (executable)
@@ -209,7 +209,7 @@ def handle_command(command, argument, notice, target):
         msg = ""
         while 1:
             new_end = markov(snippet)
-            if len(msg) + len(new_end) > 400:
+            if len(msg) + len(new_end) > 200:
                 break
             msg += new_end + " "
             for i in range(select_length - 1):