Reverting back - 711.1. Tokens and cards with a Magic card back can't transform.

This commit is contained in:
magenoxx 2011-10-07 23:58:51 +04:00
parent da2bdfb893
commit 3ee7c808e1
8 changed files with 8 additions and 48 deletions

View file

@ -80,11 +80,6 @@ public class CopyTokenFunction implements Function<Token, Card> {
target.getPower().setValue(source.getPower().getValue());
target.getToughness().setValue(source.getToughness().getValue());
if (source.canTransform()) {
target.setCanTransform(true);
target.setSecondCardFace(source.getSecondCardFace());
}
return target;
}