This commit is contained in:
Juerd Waalboer 2020-03-01 06:16:08 +01:00
parent 31a1aa5c45
commit f7a7a19d8d
5 changed files with 18 additions and 6 deletions

View file

@ -46,7 +46,7 @@ sub command {
return REJECT, $err_limit if $pre > $limit;
$cart
->add(0, "? (The next thing you add will be multiplied.)", { _repeat => 1 })
->add(0, "? (The next thing you add will be multiplied.)", { _repeat => 1, refuse_checkout => 1 })
->quantity($pre);
return ACCEPT;
}