From 2c454e52323699f40f08d2cc1d7066fd3f1472e7 Mon Sep 17 00:00:00 2001 From: cflakes Date: Sun, 4 Jul 2010 18:30:39 +0000 Subject: [PATCH] Made the antiidle module use HALT instead of HALTCORE so the weird messages never make it to other modules, e.g. colloquy (provided they have been loaded in the right order). git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@2063 726aef4b-f618-498e-8847-2d620e286838 --- modules/extra/antiidle.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/extra/antiidle.cpp b/modules/extra/antiidle.cpp index 4b544060..a4d3ce35 100644 --- a/modules/extra/antiidle.cpp +++ b/modules/extra/antiidle.cpp @@ -67,7 +67,7 @@ public: { if(Nick.GetNick() == GetUser()->GetIRCNick().GetNick() && sMessage == "\xAE") - return HALTCORE; + return HALT; return CONTINUE; }