diff options
| author | 2016-01-14 14:50:40 -0700 | |
|---|---|---|
| committer | 2016-01-14 14:50:40 -0700 | |
| commit | 8ff9ba40fcbfc00260466509c4cbb95d43f8b682 (patch) | |
| tree | b2d3a4d0e71b27931625194054365561a0613c80 /meta.pl | |
| parent | da7d90773b8acf3dde1731f81237bb451ab73e33 (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-x | meta.pl | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; |
