mirror of
https://github.com/correl/mage.git
synced 2024-11-28 19:19:55 +00:00
Fix Smelting Vat allowing the user to select any number of artifacts
This commit is contained in:
parent
4274b75225
commit
fee866d4f0
1 changed files with 1 additions and 1 deletions
|
@ -105,7 +105,7 @@ class SmeltingVatTarget extends TargetCardInLibrary {
|
|||
private final int value;
|
||||
|
||||
SmeltingVatTarget(Ability source) {
|
||||
super(0, Integer.MAX_VALUE, filter);
|
||||
super(0, 2, filter);
|
||||
this.value = CardUtil
|
||||
.castStream(source.getCosts().stream(), SacrificeTargetCost.class)
|
||||
.map(SacrificeTargetCost::getPermanents)
|
||||
|
|
Loading…
Reference in a new issue