forked from External/mage
fixed miss chosen targets clear in cost implementations (#10566)
This commit is contained in:
parent
9cd6c6f269
commit
476fd27f65
6 changed files with 4 additions and 9 deletions
|
|
@ -127,7 +127,7 @@ public class OrCost implements Cost {
|
|||
@Override
|
||||
public void clearPaid() {
|
||||
selectedCost = null;
|
||||
costs.stream().forEach(Cost::clearPaid);
|
||||
costs.forEach(Cost::clearPaid);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue