From 25fcd7f13104e84fe5726757632019a62afa0c74 Mon Sep 17 00:00:00 2001 From: Christian Heller Date: Tue, 2 Feb 2016 08:11:35 +0100 Subject: [PATCH] Shorten the default markov text length. --- plomlombot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plomlombot.py b/plomlombot.py index 8813498..11a8206 100755 --- a/plomlombot.py +++ b/plomlombot.py @@ -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): -- 2.30.2