* Jeskai Infiltrator - Fixed that Jeskai Infiltrator stayed wrongly on it's battlefield position after returning from exile.

This commit is contained in:
LevelX2 2015-01-25 02:01:03 +01:00
parent d4624853be
commit df1382010d
4 changed files with 18 additions and 37 deletions

View file

@ -149,7 +149,6 @@ public class BecomesFaceDownCreatureEffect extends ContinuousEffectImpl implemen
permanent.getCardType().clear();
permanent.getCardType().add(CardType.CREATURE);
permanent.getSubtype().clear();
permanent.getManaCost().clear();
break;
case ColorChangingEffects_5:
permanent.getColor().setColor(new ObjectColor());

View file

@ -264,7 +264,7 @@ public class PermanentCard extends PermanentImpl {
public ManaCosts<ManaCost> getManaCost() {
if (isFaceDown()) { // face down permanent has always {0} mana costs
manaCost.clear();
manaCost.add(new GenericManaCost(0));
return manaCost;
}
return super.getManaCost();
}