From 14c4feb9df38eec7947741ff9f8ec8922e07eee7 Mon Sep 17 00:00:00 2001 From: Nick Chambers Date: Wed, 23 Jun 2021 14:27:33 -0500 Subject: [PATCH] Log topic changes properly --- rowbot | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/rowbot b/rowbot index 099e43a..bf49fe2 100755 --- a/rowbot +++ b/rowbot @@ -433,6 +433,10 @@ on_PRIVMSG() { info "<%s/%s> %s" "$from" "${args[0]}" "${args[1]}" } +on_TOPIC() { + info "%s has changed the topic for %s: %s" "$from" "${args[0]}" "${args[1]}" +} + on_QUIT() { info "%s has disconnected: %s" "$from" "${args[0]}" }