diff options
| author | B. Watson <urchlay@slackware.uk> | 2026-03-25 00:38:44 -0400 |
|---|---|---|
| committer | B. Watson <urchlay@slackware.uk> | 2026-03-25 00:38:44 -0400 |
| commit | 8f19c016edd9f258c1b39eb44647c685b245f2fc (patch) | |
| tree | 3f05e85e80999df84d4ec0011f2f66065eab3936 /src/irc.c | |
| parent | 04b16deae6ea4419c2f87cab4adefcbf40f71532 (diff) | |
| download | fujinet-chat-8f19c016edd9f258c1b39eb44647c685b245f2fc.tar.gz | |
Show N for notices, not M.
Diffstat (limited to 'src/irc.c')
| -rw-r--r-- | src/irc.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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); |
