From f917179044f1724ef1d2bcd5d7bdbddfe24844f6 Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Mon, 30 Mar 2026 03:57:44 -0400 Subject: Add RPL_AWAY handling (back down to 4898 bytes, but this is a bugfix). --- src/irc.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/irc.c') diff --git a/src/irc.c b/src/irc.c index ccdfe20..bf205d0 100644 --- a/src/irc.c +++ b/src/irc.c @@ -491,6 +491,12 @@ static void do_numeric(void) { do_forward_chan(); break; + case RPL_AWAY: + scr_print_active(msg_args[1]); + scr_print_active(" is away: "); + scr_print_active(msg_text); + break; + default: if(num >= 400 && num < 600) scr_activate(scr_current); -- cgit v1.2.3