Fixed Ensoul Artifact not giving P/T to the target artifact.

This commit is contained in:
LevelX2 2015-07-06 00:57:53 +02:00
parent 12f8dc31b8
commit 0b26aaff6e
3 changed files with 70 additions and 13 deletions

View file

@ -155,14 +155,9 @@ public class BecomesCreatureAttachedEffect extends ContinuousEffectImpl {
break;
case PTChangingEffects_7:
if (sublayer == SubLayer.SetPT_7b) {
switch (loseType) {
case ALL:
case ALL_BUT_COLOR:
case ABILITIES_AND_PT:
permanent.getPower().setValue(token.getPower().getValue());
permanent.getToughness().setValue(token.getToughness().getValue());
break;
}
permanent.getPower().setValue(token.getPower().getValue());
permanent.getToughness().setValue(token.getToughness().getValue());
break;
}
}
}