From 8ff9ba40fcbfc00260466509c4cbb95d43f8b682 Mon Sep 17 00:00:00 2001 From: William Heimbigner Date: Thu, 14 Jan 2016 14:50:40 -0700 Subject: Register command-processing handlers inside of the command module, rather than having the event handler module call the command handler module --- meta.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'meta.pl') 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; -- cgit v1.2.3