mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
fixed test failure
This commit is contained in:
parent
4056afe520
commit
42592072c2
1 changed files with 1 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue