print out channel name with messages

This commit is contained in:
darkf 2013-10-27 01:05:46 -07:00
parent 427f5ccd29
commit 7d67d187e0
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ end.
handleCommand(user, "PRIVMSG", [chan, msg]) -> do
nick = ircnick(user);
putstrln("<" + nick + "> " + msg);
putstrln(chan + " " + "<" + nick + "> " + msg);
handleMessage(nick, chan, msg)
end.