From: Michael Andreen Date: Sat, 30 May 2009 19:25:36 +0000 (+0200) Subject: Removed debug output X-Git-Url: https://ruin.nu/git/?a=commitdiff_plain;h=fd3b4651fa4a5957ff4abc2e75075497f58e857f;p=NDIRC.git Removed debug output --- diff --git a/Commands/Channel.pm b/Commands/Channel.pm index edd1146..c30c632 100644 --- a/Commands/Channel.pm +++ b/Commands/Channel.pm @@ -71,10 +71,8 @@ sub invite my @channels; if ($channel && $c->check_user_roles('irc_masterinvite')){ - print "master $channel"; push @channels,$channel; }else{ - print "master $channel"; my @access = ('auto_invite'); push @access, 'invite' if $channel; my $channels = $c->model->prepare(q{ @@ -92,7 +90,6 @@ WHERE u.hostmask ILIKE $1 AND COALESCE(c.name = $2,TRUE) } } for (@channels){ - print; $c->server->command("invite ". $c->nick ." $_"); } }