diff options
| author | B. Watson <urchlay@slackware.uk> | 2026-04-01 01:37:51 -0400 |
|---|---|---|
| committer | B. Watson <urchlay@slackware.uk> | 2026-04-01 01:37:51 -0400 |
| commit | 3fde0115504756dedf2ff352da5bf7ef1933cf65 (patch) | |
| tree | ad9406b1d7a1360dda47d9ff30c335c53c8b1c2a /src/irc.c | |
| parent | e3ea7495e8eed71c0f5504c7ae51ce205b2d5cea (diff) | |
| download | fujinet-chat-3fde0115504756dedf2ff352da5bf7ef1933cf65.tar.gz | |
Fix spacing of "<nick> joined" message.
Diffstat (limited to 'src/irc.c')
| -rw-r--r-- | src/irc.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -258,12 +258,12 @@ static void do_notice(void) { static void do_join(void) { ind_act_join(); if(streq_i(conf->nick, msg_src)) { - scr_print_active("You "); + scr_print_active("You"); } else { scr_print_active("\x02=\x02"); scr_print_active(msg_src); } - scr_print_active("joined "); + scr_print_active(" joined "); scr_print_active(msg_dest); scr_eol_active(); } |
