* Fixed that soulbond arrow to paired card was not shown and improved soulbond text on permanent.

This commit is contained in:
LevelX2 2018-02-14 12:41:44 +01:00
parent 014c93e05e
commit 3b19304f64
4 changed files with 10 additions and 11 deletions

View file

@ -1319,6 +1319,10 @@ public abstract class PermanentImpl extends CardImpl implements Permanent {
@Override
public void setPairedCard(MageObjectReference pairedCard) {
this.pairedPermanent = pairedCard;
if (pairedCard == null) {
// remove existing soulbond info text
this.addInfo("soulbond", null, null);
}
}
@Override