
The signatures feature has been "experimental" since Perl 5.20 (May 2014), but expected to stay. After 8 years I'm ready to take the risk :) Have added Perl v5.28 (June 2018) as the minimum requirement, even though the current revbank should work with 5.20, to see if this bothers any users. Perl v5.28 is in Debian "buster", which is now oldstable.
18 lines
472 B
Perl
18 lines
472 B
Perl
#!perl
|
|
|
|
my %bounties = (
|
|
1 => [ 10, "Bedankt voor het vegen/stofzuigen" ],
|
|
2 => [ 10, "Bedankt voor het afvoeren van het afval" ],
|
|
3 => [ 25, "Bedankt voor het dweilen" ],
|
|
4 => [ 15, "Bedankt voor 't poetsen van alle tafels" ],
|
|
);
|
|
|
|
sub command :Tab(BOUNTY1,BOUNTY2,BOUNTY3,BOUNTY4) ($self, $cart, $command, @) {
|
|
if ($command =~ /BOUNTY(\d+)/) {
|
|
$cart->add(+$bounties{$1}[0], $bounties{$1}[1]);
|
|
return ACCEPT;
|
|
}
|
|
|
|
return NEXT;
|
|
}
|
|
|