From dc3e47e0452461d81dd22c5564f5da27bf7da569 Mon Sep 17 00:00:00 2001 From: L_J Date: Sun, 11 Mar 2018 22:42:17 +0000 Subject: [PATCH] Brothers Yamazaki filter edit (fixes #4603) --- Mage.Sets/src/mage/cards/b/BrothersYamazaki.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Mage.Sets/src/mage/cards/b/BrothersYamazaki.java b/Mage.Sets/src/mage/cards/b/BrothersYamazaki.java index c5f843ca52a..761add31ae8 100644 --- a/Mage.Sets/src/mage/cards/b/BrothersYamazaki.java +++ b/Mage.Sets/src/mage/cards/b/BrothersYamazaki.java @@ -43,6 +43,7 @@ import mage.constants.*; import mage.filter.FilterPermanent; import mage.filter.common.FilterCreaturePermanent; import mage.filter.predicate.mageobject.NamePredicate; +import mage.filter.predicate.permanent.AnotherPredicate; import mage.game.Game; import mage.game.events.GameEvent; import mage.game.permanent.Permanent; @@ -56,6 +57,7 @@ public class BrothersYamazaki extends CardImpl { private static final FilterCreaturePermanent filter = new FilterCreaturePermanent(); static { + filter.add(new AnotherPredicate()); filter.add(new NamePredicate("Brothers Yamazaki")); }