mirror of
https://github.com/correl/mage.git
synced 2025-02-18 12:54:22 +00:00
[40K] Fix Thunderwolf Cavalry putting counters on itself
This commit is contained in:
parent
3ed26a2b1f
commit
3a7b4d14fa
1 changed files with 5 additions and 0 deletions
|
@ -11,6 +11,7 @@ import mage.constants.SubType;
|
|||
import mage.counters.CounterType;
|
||||
import mage.filter.FilterPermanent;
|
||||
import mage.filter.common.FilterControlledCreaturePermanent;
|
||||
import mage.filter.predicate.mageobject.AnotherPredicate;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
|
@ -22,6 +23,10 @@ public final class ThunderwolfCavalry extends CardImpl {
|
|||
private static final FilterPermanent filter
|
||||
= new FilterControlledCreaturePermanent("other creature you control");
|
||||
|
||||
static {
|
||||
filter.add(AnotherPredicate.instance);
|
||||
}
|
||||
|
||||
public ThunderwolfCavalry(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{4}{W}");
|
||||
|
||||
|
|
Loading…
Reference in a new issue