- Fixed possibility of getting stuck with Sea Drake and only one land.

This commit is contained in:
Sloth
2012-10-15 20:24:50 +00:00
parent 0caa64211f
commit 0e23eabbe1
2 changed files with 3 additions and 2 deletions

View File

@@ -716,7 +716,8 @@ public class Target {
} else { } else {
for (final Card c : AllZoneUtil.getCardsIn(this.tgtZone)) { for (final Card c : AllZoneUtil.getCardsIn(this.tgtZone)) {
if (c.isValid(this.validTgts, this.srcCard.getController(), this.srcCard) if (c.isValid(this.validTgts, this.srcCard.getController(), this.srcCard)
&& (!isTargeted || c.canBeTargetedBy(sa))) { && (!isTargeted || c.canBeTargetedBy(sa))
&& !this.getTargetCards().contains(c)) {
return true; return true;
} }
} }