mirror of
https://github.com/magefree/mage.git
synced 2026-01-22 11:19:55 -08:00
* Deathmist Raptor - Fixed a bug that the ability to return it from graveyard did not trigger.
This commit is contained in:
parent
10b7791cd2
commit
0f37405480
2 changed files with 6 additions and 4 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue