- FRF: Added Ghastly Conscription

This commit is contained in:
Sol
2015-01-16 16:55:18 +00:00
parent ba9452a715
commit 7a41b061df
3 changed files with 13 additions and 1 deletions

View File

@@ -421,7 +421,10 @@ public class Card extends GameEntity implements Comparable<Card> {
return null;
}
// Move to p's battlefield
Card c = p.getGame().getAction().moveToPlay(this, p);
Game game = p.getGame();
// Just in case you aren't the controller, now you are!
this.setController(p, game.getNextTimestamp());
Card c = game.getAction().moveToPlay(this, p);
c.setPreFaceDownState(CardStateName.Original);
// Mark this card as "manifested"
c.setManifested(true);