diff options
author | David Phillips <david@sighup.nz> | 2017-03-09 12:42:58 +1300 |
---|---|---|
committer | David Phillips <david@sighup.nz> | 2017-03-09 12:42:58 +1300 |
commit | 3b19802f18f8b5d48f89768743cfbe854fc9df4f (patch) | |
tree | df18992e7f7ffa7ee0c2f7c4ee5c34dab52933c9 /saxrobot | |
parent | e99c752927ba2e151ec887ea2e82e80d54ccea8c (diff) | |
parent | 9bb8010141516ad438d8fd5ec41be77dc78395c1 (diff) | |
download | idalius-3b19802f18f8b5d48f89768743cfbe854fc9df4f.tar.xz |
Merge branch 'tidy'
Diffstat (limited to 'saxrobot')
-rwxr-xr-x | saxrobot | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -31,8 +31,6 @@ POE::Session->create( heap => { irc => $irc }, ); -our $hold_op = {}; - $poe_kernel->run(); sub _start { @@ -83,7 +81,7 @@ sub irc_public { } sub irc_msg { - my ($who, $to, $what, $ided) = @_[ARG0, ARG1, ARG2, ARG3]; + my ($who, $to, $what, $ided) = @_[ARG0 .. ARG3]; my $nick = (split /!/, $who)[0]; if ($config{must_id} && $ided != 1) { $irc->yield(privmsg => $nick => "You must identify with services"); |