From: timriker Date: Mon, 3 May 2010 23:16:57 +0000 (+0000) Subject: stop rewt or r00t warn silliness X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=4f58a98193b13732312519c72e91c429441c87fa;p=infobot.git stop rewt or r00t warn silliness git-svn-id: https://svn.code.sf.net/p/infobot/code/trunk@1895 c11ca15a-4712-0410-83d8-924469b57eb5 --- diff --git a/src/IRC/IrcHooks.pl b/src/IRC/IrcHooks.pl index ff8203b..f0c289d 100644 --- a/src/IRC/IrcHooks.pl +++ b/src/IRC/IrcHooks.pl @@ -620,7 +620,8 @@ sub on_join { ### ROOTWARN: &rootWarn( $who, $user, $host, $chan ) if ( &IsChanConf('RootWarn') > 0 - && $user =~ /^~?r(oo|ew|00)t$/i ); + && $user eq 'root' ); + #&& $user =~ /^~?r(oo|ew|00)t$/i ); ### emit a message based on who just joined &onjoin( $who, $user, $host, $chan ) if ( &IsChanConf('OnJoin') > 0 );