* Deathmist Raptor - Fixed a bug that the ability to return it from graveyard did not trigger.

This commit is contained in:
LevelX2 2015-03-20 18:07:35 +01:00
parent 10b7791cd2
commit 0f37405480
2 changed files with 6 additions and 4 deletions

View file

@ -101,7 +101,7 @@ class DeathmistRaptorEffect extends OneShotEffect {
Card card = game.getCard(source.getSourceId());
if (controller != null && card != null) {
controller.putOntoBattlefieldWithInfo(card, game, Zone.GRAVEYARD, source.getSourceId(), false,
controller.chooseUse(Outcome.Detriment, "Return " + card.getName() + " face down to battlefield?", game));
controller.chooseUse(Outcome.Detriment, "Return " + card.getName() + " face down to battlefield (otherwise face up)?", game));
return true;
}
return false;