- Fixed Mitotic Manipulation.

This commit is contained in:
Sloth
2012-02-21 11:18:11 +00:00
parent 059c0608f3
commit 8aae90b70f

View File

@@ -627,7 +627,7 @@ public final class AbilityFactoryReveal {
final CardList play = AllZoneUtil.getCardsIn(Zone.Battlefield); final CardList play = AllZoneUtil.getCardsIn(Zone.Battlefield);
for (final Card c : list) { for (final Card c : list) {
for (final Card p : play) { for (final Card p : play) {
if (p.getName().equals(c.getName())) { if (p.getName().equals(c.getName()) && !toReturn.contains(c)) {
toReturn.add(c); toReturn.add(c);
} }
} }