mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-17 11:18:01 +00:00
- Fixed unpairing with tokens.
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user