[###cards] → ###cards, so ppl don't think it's a card in their hand

This commit is contained in:
Juhani Krekelä 2019-05-09 10:35:34 +03:00
parent 996a25cf45
commit d596d55eff
1 changed files with 1 additions and 1 deletions

View File

@ -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