diff options
author | David Phillips <david@sighup.nz> | 2018-08-07 17:04:53 +1200 |
---|---|---|
committer | David Phillips <david@sighup.nz> | 2018-08-07 17:04:53 +1200 |
commit | 2437a2ae6c64e189b5c6d50525e574c60b08c209 (patch) | |
tree | cf5a71518be4b43d000c51c5165bdb4999b0814f | |
parent | d45fd39c8453c5d2ce850410da9351eaa5393bcc (diff) | |
download | idalius-2437a2ae6c64e189b5c6d50525e574c60b08c209.tar.xz |
Update source command for new args, add nah.nz url
-rw-r--r-- | Plugin/Source.pm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Plugin/Source.pm b/Plugin/Source.pm index 97434dd..940fc2f 100644 --- a/Plugin/Source.pm +++ b/Plugin/Source.pm @@ -16,8 +16,10 @@ sub configure { } sub source { - my ($self, $logger, $who, $where, $rest, @arguments) = @_; - my @urls = ("https://gitlab.com/dphillips/idalius"); + my ($self, $irc, $logger, $who, $where, $rest, @arguments) = @_; + my @urls = ( + "https://git.nah.nz/idalius/", + "https://gitlab.com/dphillips/idalius"); my $help_message = "My guts can be browsed at: "; return $help_message . join " ", @urls; } |