* Fixed a problem of endless iteration with Reflecting Pool.

This commit is contained in:
LevelX2 2017-05-18 16:57:32 +02:00
parent 83cdd5570d
commit d686af8890
4 changed files with 9 additions and 7 deletions

View file

@ -116,7 +116,7 @@ public class PermanentCard extends PermanentImpl {
this.cardType.clear();
this.cardType.addAll(card.getCardType());
this.color = card.getColor(null).copy();
this.frameColor = card.getFrameColor(null).copy();
this.frameColor = card.getFrameColor(game).copy();
this.frameStyle = card.getFrameStyle();
this.manaCost = card.getManaCost().copy();
if (card instanceof PermanentCard) {