diff options
author | David Phillips <david@sighup.nz> | 2018-09-11 23:13:45 +1200 |
---|---|---|
committer | David Phillips <david@sighup.nz> | 2018-09-11 23:13:45 +1200 |
commit | 83027a8d04b3d2be69d179d85ae9958637aa16f4 (patch) | |
tree | 03ce2775409e388154f80ee92c7b3f589e026b65 /Plugin | |
parent | 8645387b68f9a9f0e05c86f0a81c8a69263e84cb (diff) | |
download | idalius-83027a8d04b3d2be69d179d85ae9958637aa16f4.tar.xz |
DevNull: Add missing parameters to run_command
Diffstat (limited to 'Plugin')
-rw-r--r-- | Plugin/DevNull.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Plugin/DevNull.pm b/Plugin/DevNull.pm index e8a51e7..b29a71a 100644 --- a/Plugin/DevNull.pm +++ b/Plugin/DevNull.pm @@ -22,7 +22,7 @@ sub configure { sub hush { my ($self, $irc, $logger, $who, $where, $rest, @arguments) = @_; - $run_command->($rest); + $run_command->($rest, $who, $where); return; } |