diff options
Diffstat (limited to 'Plugin/Shuffle.pm')
-rw-r--r-- | Plugin/Shuffle.pm | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/Plugin/Shuffle.pm b/Plugin/Shuffle.pm deleted file mode 100644 index dc39898..0000000 --- a/Plugin/Shuffle.pm +++ /dev/null @@ -1,26 +0,0 @@ -package Plugin::Shuffle; - -use strict; -use warnings; - -use List::Util; - -my %config; - -sub configure { - my $self = shift; - my $cmdref = shift; - my $cref = shift; - %config = %$cref; - - $cmdref->("shuffle", sub { $self->shuffle(@_); } ); - - return $self; -} - -sub shuffle { - my ($self, $irc, $logger, $who, $where, $rest, @arguments) = @_; - - return join " ", List::Util::shuffle(@arguments); -} -1; |