mirror of
https://github.com/magefree/mage.git
synced 2025-12-28 14:32:06 -08:00
* Jeskai Infiltrator - Fixed that Jeskai Infiltrator stayed wrongly on it's battlefield position after returning from exile.
This commit is contained in:
parent
d4624853be
commit
df1382010d
4 changed files with 18 additions and 37 deletions
|
|
@ -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());
|
||||
|
|
|
|||
|
|
@ -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();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue