mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 12:48:00 +00:00
*Fixed putting cards in alternate states into the library (Grasp of Phantasms on an Ironfang for example)
This commit is contained in:
@@ -542,6 +542,11 @@ public class GameAction {
|
|||||||
return c;
|
return c;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(c.isInAlternateState())
|
||||||
|
{
|
||||||
|
c.changeState();
|
||||||
|
}
|
||||||
|
|
||||||
if ((p != null) && p.is(Constant.Zone.Battlefield)) {
|
if ((p != null) && p.is(Constant.Zone.Battlefield)) {
|
||||||
c = AllZone.getCardFactory().copyCard(c);
|
c = AllZone.getCardFactory().copyCard(c);
|
||||||
}
|
}
|
||||||
@@ -2031,6 +2036,8 @@ public class GameAction {
|
|||||||
this.exile(chosen);
|
this.exile(chosen);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
} else if (spell.getSourceCard().hasKeyword("Convoke")) {
|
||||||
|
|
||||||
}
|
}
|
||||||
} // isSpell
|
} // isSpell
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user