I'm not sure where to post this...but...
in src/mod/irc.mod/chan.c
static int gotmsg(char *from, char *msg)
I think the line:
if (!strchr("&#!+@$", msg[0]))
should be:
if (!strchr(CHANMETA "@", msg[0]))
eggdev mailing list?PerilousSeas wrote:I'm not sure where to post this...but...