Fix bug: "split" ignored quantity set by "repeat" or "plus" plugin

This commit is contained in:
Juerd Waalboer 2022-12-22 19:36:51 +01:00
parent b9c91c0054
commit c34caf434a

View file

@ -13,7 +13,7 @@ sub command :Tab(take,steal,split) ($self, $cart, $command, @) {
$self->{users} = [];
my $sum = List::Util::sum(map -$_->{amount}, _select_split($cart));
my $sum = List::Util::sum(map -$_->{amount} * $_->{quantity}, _select_split($cart));
$self->{split_amount} = $sum;
return REJECT, "Nothing to split. Add products first." if not $sum;