- Fixed unpairing with tokens.

This commit is contained in:
Sloth
2013-05-01 05:40:49 +00:00
parent c3e6050aa1
commit 28434b14f7

View File

@@ -1031,7 +1031,7 @@ public class GameAction {
// Soulbond unpairing
if (c.isPaired()) {
Card partner = c.getPairedWith();
if (!partner.isCreature() || c.getController() != partner.getController()) {
if (!partner.isCreature() || c.getController() != partner.getController() || !game.isCardInZone(c, ZoneType.Battlefield)) {
c.setPairedWith(null);
partner.setPairedWith(null);
}