From 3fde0115504756dedf2ff352da5bf7ef1933cf65 Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Wed, 1 Apr 2026 01:37:51 -0400 Subject: Fix spacing of " joined" message. --- src/irc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/irc.c b/src/irc.c index 0ca0b01..63dc331 100644 --- a/src/irc.c +++ b/src/irc.c @@ -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(); } -- cgit v1.2.3