diff options
author | David Phillips <david@yeah.nah.nz> | 2019-01-05 18:16:51 +1300 |
---|---|---|
committer | David Phillips <david@yeah.nah.nz> | 2019-01-05 18:16:51 +1300 |
commit | 08eeb8b97e96c261b52e55a5426893bc107daccf (patch) | |
tree | c9ef1ce09e9740d95d408aee6f1cb5667cfd476f /Plugin/Thanks.pm | |
parent | 42489797458338ec2a7c273c3068f7c9d9ee9ece (diff) | |
download | idalius-08eeb8b97e96c261b52e55a5426893bc107daccf.tar.xz |
Implement no-reentry request on modules
This fixes duplicate URL titles from a `title of` command, and will likely
find use in future.
Diffstat (limited to 'Plugin/Thanks.pm')
-rw-r--r-- | Plugin/Thanks.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Plugin/Thanks.pm b/Plugin/Thanks.pm index 0ccf319..ed1232a 100644 --- a/Plugin/Thanks.pm +++ b/Plugin/Thanks.pm @@ -16,7 +16,7 @@ sub configure { } sub thanks { - my ($self, $irc, $logger, $who, $where, $ided, $rest, @arguments) = @_; + my ($self, $irc, $logger, $who, $where, $ided, $rest, $no_reenter, @arguments) = @_; my $nick = (split /!/, $who)[0]; my @responses = ( "No problem", |