- Fixed Soulbond pairing with cards not on the battlefield.

This commit is contained in:
Sloth
2012-08-01 19:20:09 +00:00
parent a38ba1a7b5
commit f57a914eb7

View File

@@ -317,7 +317,7 @@ public final class AbilityFactoryBond {
trigCards = AbilityFactory.getDefinedCards(sa.getSourceCard(), params.get("Defined"), sa);
// Check that this card hasn't already become paired by an earlier trigger
if (trigCards.get(0).isPaired()) {
if (trigCards.get(0).isPaired() || !trigCards.get(0).isInZone(ZoneType.Battlefield)) {
return;
}