donate command: s/Price/Amount/

This commit is contained in:
Juerd Waalboer 2022-08-27 04:59:17 +02:00
parent 23e08fa977
commit 92fb63088c

View file

@ -6,7 +6,8 @@ sub command :Tab(unlisted,donate) ($self, $cart, $command, @) {
$command eq 'unlisted' or $command eq 'donate' or return NEXT;
$self->{command} = $command;
return "Price", \&amount;
my $prompt = $command eq 'donate' ? 'Amount' : 'Price';
return $prompt, \&amount;
}
sub amount($self, $cart, $arg, @) {