summaryrefslogtreecommitdiffstats
path: root/meta.pl
diff options
context:
space:
mode:
authorLibravatarWilliam Heimbigner <william.heimbigner@gmail.com>2016-01-14 14:50:40 -0700
committerLibravatarWilliam Heimbigner <william.heimbigner@gmail.com>2016-01-14 14:50:40 -0700
commit8ff9ba40fcbfc00260466509c4cbb95d43f8b682 (patch)
treeb2d3a4d0e71b27931625194054365561a0613c80 /meta.pl
parentda7d90773b8acf3dde1731f81237bb451ab73e33 (diff)
Register command-processing handlers inside of the command module, rather than having the event handler module call the command handler module
Diffstat (limited to 'meta.pl')
-rwxr-xr-xmeta.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta.pl b/meta.pl
index a5132e2..4591417 100755
--- a/meta.pl
+++ b/meta.pl
@@ -6,7 +6,7 @@ use warnings;
use FindBin;
use lib "$FindBin::Bin/lib";;
-use Net::IRC 0.90;
+use Net::IRC 0.91;
use Data::Dumper;
use IO::All;
use Getopt::Long;
@@ -133,8 +133,8 @@ sub init {
}
$::inspector = ASM::Inspect->new();
$::services = ASM::Services->new();
- $::commander = ASM::Commander->new();
$::event = ASM::Event->new($conn, $::inspector);
+ $::commander = ASM::Commander->new($conn);
$::classes = ASM::Classes->new();
$::fifo = ASM::Fifo->new($irc, $conn);
my @nickbl = io('nick_blacklist.txt')->getlines;