From d596d55eff088ad479c71eb2e824a908da5f0c1f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juhani=20Krekel=C3=A4?= Date: Thu, 9 May 2019 10:35:34 +0300 Subject: [PATCH] =?UTF-8?q?[###cards]=20=E2=86=92=20###cards,=20so=20ppl?= =?UTF-8?q?=20don't=20think=20it's=20a=20card=20in=20their=20hand?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- botcmd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/botcmd.py b/botcmd.py index ad5e410..00e522f 100644 --- a/botcmd.py +++ b/botcmd.py @@ -60,7 +60,7 @@ class GameLoop(threading.Thread): line_len = 0 for part in message_parts: if len(part) + line_len > 440: - self.irc.send_raw(b'NOTICE %s :[%s] %s' % (recipient, self.irc_chan, b' '.join(line))) + self.irc.send_raw(b'NOTICE %s :%s %s' % (recipient, self.irc_chan, b' '.join(line))) line = [] line_len = 0