mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
small update to crew ability to reflect rule change
This commit is contained in:
parent
0c1570cbfa
commit
266addb4e1
1 changed files with 3 additions and 1 deletions
|
@ -14,6 +14,7 @@ import mage.constants.Duration;
|
|||
import mage.constants.Outcome;
|
||||
import mage.constants.Zone;
|
||||
import mage.filter.common.FilterControlledCreaturePermanent;
|
||||
import mage.filter.predicate.mageobject.AnotherPredicate;
|
||||
import mage.filter.predicate.permanent.TappedPredicate;
|
||||
import mage.game.Game;
|
||||
import mage.game.events.GameEvent;
|
||||
|
@ -57,10 +58,11 @@ public class CrewAbility extends SimpleActivatedAbility {
|
|||
|
||||
class CrewCost extends CostImpl {
|
||||
|
||||
private static final FilterControlledCreaturePermanent filter = new FilterControlledCreaturePermanent("untapped creature you control");
|
||||
private static final FilterControlledCreaturePermanent filter = new FilterControlledCreaturePermanent("another untapped creature you control");
|
||||
|
||||
static {
|
||||
filter.add(TappedPredicate.UNTAPPED);
|
||||
filter.add(AnotherPredicate.instance);
|
||||
}
|
||||
|
||||
private final int value;
|
||||
|
|
Loading…
Reference in a new issue