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