mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-18 03:38:01 +00:00
- Fixed possibility of getting stuck with Sea Drake and only one land.
This commit is contained in:
@@ -716,7 +716,8 @@ public class Target {
|
||||
} else {
|
||||
for (final Card c : AllZoneUtil.getCardsIn(this.tgtZone)) {
|
||||
if (c.isValid(this.validTgts, this.srcCard.getController(), this.srcCard)
|
||||
&& (!isTargeted || c.canBeTargetedBy(sa))) {
|
||||
&& (!isTargeted || c.canBeTargetedBy(sa))
|
||||
&& !this.getTargetCards().contains(c)) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user