mirror of
https://github.com/correl/mage.git
synced 2024-11-25 11:09:53 +00:00
Fix Kelpie Guide's activated ability (#8291)
Should only be able to untap another target permanent.
This commit is contained in:
parent
b963168f35
commit
5e1b04aeb8
1 changed files with 5 additions and 0 deletions
|
@ -19,6 +19,7 @@ import mage.constants.Zone;
|
|||
import mage.filter.FilterPermanent;
|
||||
import mage.filter.common.FilterControlledLandPermanent;
|
||||
import mage.filter.common.FilterControlledPermanent;
|
||||
import mage.filter.predicate.mageobject.AnotherPredicate;
|
||||
import mage.target.TargetPermanent;
|
||||
|
||||
import java.util.UUID;
|
||||
|
@ -35,6 +36,10 @@ public final class KelpieGuide extends CardImpl {
|
|||
private static final Condition condition
|
||||
= new PermanentsOnTheBattlefieldCondition(filter, ComparisonType.MORE_THAN, 7);
|
||||
|
||||
static {
|
||||
filter2.add(AnotherPredicate.instance);
|
||||
}
|
||||
|
||||
public KelpieGuide(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{U}");
|
||||
|
||||
|
|
Loading…
Reference in a new issue