From 803fd9b3faccfe901460cb94bb397db022eaa445 Mon Sep 17 00:00:00 2001 From: Sloth Date: Wed, 14 Sep 2011 13:20:49 +0000 Subject: [PATCH] =?UTF-8?q?-=20Fixed=20the=20legend=20rule=20("If=20only?= =?UTF-8?q?=20one=20of=20those=20permanents=20is=20legendary,=20this=20rul?= =?UTF-8?q?e=20doesn=E2=80=99t=20apply").?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/java/forge/GameAction.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/java/forge/GameAction.java b/src/main/java/forge/GameAction.java index 8fb41b04959..680f4305f5c 100644 --- a/src/main/java/forge/GameAction.java +++ b/src/main/java/forge/GameAction.java @@ -830,6 +830,7 @@ public class GameAction { while (!a.isEmpty() && !AllZoneUtil.isCardInPlay("Mirror Gallery")) { CardList b = AllZoneUtil.getCardsInPlay(a.get(0).getName()); + b.getType("Legendary"); b = b.filter(new CardListFilter() { public boolean addCard(final Card c) { return !c.isFaceDown();