fixed test failure

This commit is contained in:
Evan Kranzler 2022-02-10 19:27:19 -05:00
parent 4056afe520
commit 42592072c2

View file

@ -115,7 +115,7 @@ class CrewCost extends CostImpl {
private CrewCost(final CrewCost cost) {
super(cost);
this.value = cost.value;
this.altCost = cost.altCost.copy();
this.altCost = cost.altCost != null ? cost.altCost.copy() : null;
}
private boolean handleAltCost(Ability ability, Game game, Ability source, UUID controllerId, boolean noMana, Cost costToPay) {