From da374e6e610f9c825ddb7d35170a5beacd2d9f08 Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Sun, 20 Jun 2021 18:17:38 -0400 Subject: Don't match actions in notices --- handle.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/handle.c b/handle.c index 0a5d95c..bdf6db0 100644 --- a/handle.c +++ b/handle.c @@ -1241,7 +1241,7 @@ static void handlePrivmsg(struct Message *msg) { } bool notice = (msg->cmd[0] == 'N'); - bool action = isAction(msg); + bool action = !notice && isAction(msg); bool highlight = !mine && isMention(msg); enum Heat heat = filterCheck((highlight || query ? Hot : Warm), id, msg); if (heat > Warm && !mine && !query) highlight = true; -- cgit 1.4.1