fixed miss chosen targets clear in cost implementations (#10566)

This commit is contained in:
Oleg Agafonov 2023-07-05 23:10:20 +04:00
parent 9cd6c6f269
commit 476fd27f65
6 changed files with 4 additions and 9 deletions

View file

@ -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