diff options
author | David Phillips <david@sighup.nz> | 2018-09-17 17:50:53 +1200 |
---|---|---|
committer | David Phillips <david@sighup.nz> | 2018-09-17 17:51:02 +1200 |
commit | 0168a87290dccb8548b4943aca6a43b1a2567a96 (patch) | |
tree | 59f657c45c3e0aeca7586c07808a67430e499b66 /Plugin/DevNull.pm | |
parent | acc3dd54a4c861e2cb02f0c3cb29ea40ce16f706 (diff) | |
download | idalius-0168a87290dccb8548b4943aca6a43b1a2567a96.tar.xz |
Add must_id functionality back
Fixes regression in acc3dd54a4c861e2cb02f0c3cb29ea40ce16f706
Diffstat (limited to 'Plugin/DevNull.pm')
-rw-r--r-- | Plugin/DevNull.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Plugin/DevNull.pm b/Plugin/DevNull.pm index 0565aec..b1087f1 100644 --- a/Plugin/DevNull.pm +++ b/Plugin/DevNull.pm @@ -17,9 +17,9 @@ sub configure { } sub hush { - my ($self, $irc, $logger, $who, $where, $rest, @arguments) = @_; + my ($self, $irc, $logger, $who, $where, $ided, $rest, @arguments) = @_; - $run_command->($rest, $who, $where); + $run_command->($rest, $who, $where, $ided); return; } |