diff --git a/botcmd.py b/botcmd.py index d4e1530..c203929 100644 --- a/botcmd.py +++ b/botcmd.py @@ -68,7 +68,7 @@ class GameLoop(threading.Thread): line_len += len(part) + 1 if len(line) > 0: - 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))) def get_event(self): event = self.chan.recv()