mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
Fix 1 card (HOU)
This commit is contained in:
parent
09ed2370ba
commit
70c9163d6a
1 changed files with 3 additions and 3 deletions
|
@ -42,7 +42,7 @@ import mage.constants.CardType;
|
||||||
import mage.constants.Duration;
|
import mage.constants.Duration;
|
||||||
import mage.constants.SubType;
|
import mage.constants.SubType;
|
||||||
import mage.constants.Zone;
|
import mage.constants.Zone;
|
||||||
import mage.filter.common.FilterControlledCreaturePermanent;
|
import mage.filter.common.FilterControlledPermanent;
|
||||||
import mage.filter.predicate.mageobject.SubtypePredicate;
|
import mage.filter.predicate.mageobject.SubtypePredicate;
|
||||||
import mage.game.Game;
|
import mage.game.Game;
|
||||||
import mage.game.events.GameEvent;
|
import mage.game.events.GameEvent;
|
||||||
|
@ -56,7 +56,7 @@ import mage.target.common.TargetCreaturePermanent;
|
||||||
*/
|
*/
|
||||||
public class UnconventionalTactics extends CardImpl {
|
public class UnconventionalTactics extends CardImpl {
|
||||||
|
|
||||||
private static final FilterControlledCreaturePermanent filter = new FilterControlledCreaturePermanent("zombie creature");
|
private static final FilterControlledPermanent filter = new FilterControlledPermanent("Zombie");
|
||||||
|
|
||||||
static {
|
static {
|
||||||
filter.add(new SubtypePredicate(SubType.ZOMBIE));
|
filter.add(new SubtypePredicate(SubType.ZOMBIE));
|
||||||
|
@ -90,7 +90,7 @@ public class UnconventionalTactics extends CardImpl {
|
||||||
|
|
||||||
class UnconventionalTacticsTriggeredAbility extends TriggeredAbilityImpl {
|
class UnconventionalTacticsTriggeredAbility extends TriggeredAbilityImpl {
|
||||||
|
|
||||||
private static final FilterControlledCreaturePermanent filter = new FilterControlledCreaturePermanent("zombie creature");
|
private static final FilterControlledPermanent filter = new FilterControlledPermanent("Zombie");
|
||||||
|
|
||||||
static {
|
static {
|
||||||
filter.add(new SubtypePredicate(SubType.ZOMBIE));
|
filter.add(new SubtypePredicate(SubType.ZOMBIE));
|
||||||
|
|
Loading…
Reference in a new issue