aboutsummaryrefslogtreecommitdiff
path: root/src/irc.c
diff options
context:
space:
mode:
authorB. Watson <urchlay@slackware.uk>2026-03-25 00:38:44 -0400
committerB. Watson <urchlay@slackware.uk>2026-03-25 00:38:44 -0400
commit8f19c016edd9f258c1b39eb44647c685b245f2fc (patch)
tree3f05e85e80999df84d4ec0011f2f66065eab3936 /src/irc.c
parent04b16deae6ea4419c2f87cab4adefcbf40f71532 (diff)
downloadfujinet-chat-8f19c016edd9f258c1b39eb44647c685b245f2fc.tar.gz
Show N for notices, not M.
Diffstat (limited to 'src/irc.c')
-rw-r--r--src/irc.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/irc.c b/src/irc.c
index d0e0595..fb3b979 100644
--- a/src/irc.c
+++ b/src/irc.c
@@ -249,7 +249,10 @@ static void do_privmsg(void) {
ind_act_chantext();
} else {
do_priv_nick();
- ind_act_pm();
+ if(*msg_cmd == 'N')
+ ind_act_notice();
+ else
+ ind_act_pm();
}
scr_print_active(msg_text);