mirror of
https://github.com/magefree/mage.git
synced 2025-12-23 03:51:58 -08:00
Fixes
This commit is contained in:
parent
8977922fbd
commit
bbe7630558
2 changed files with 2 additions and 2 deletions
|
|
@ -92,7 +92,7 @@ class MakeAWishEffect extends OneShotEffect<MakeAWishEffect> {
|
||||||
if (card != null) {
|
if (card != null) {
|
||||||
card.moveToZone(Zone.HAND, source.getId(), game, true);
|
card.moveToZone(Zone.HAND, source.getId(), game, true);
|
||||||
cards.remove(card);
|
cards.remove(card);
|
||||||
game.informPlayers(card.getName() + "returned to the hand of" + player.getName());
|
game.informPlayers(card.getName() + " returned to the hand of " + player.getName());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
|
|
|
||||||
|
|
@ -64,7 +64,7 @@ public class MoldgrafMonstrosity extends CardImpl<MoldgrafMonstrosity> {
|
||||||
this.addAbility(TrampleAbility.getInstance());
|
this.addAbility(TrampleAbility.getInstance());
|
||||||
// When Moldgraf Monstrosity dies, exile it, then return two creature cards at random from your graveyard to the battlefield.
|
// When Moldgraf Monstrosity dies, exile it, then return two creature cards at random from your graveyard to the battlefield.
|
||||||
DiesTriggeredAbility ability = new DiesTriggeredAbility(new ExileSourceEffect());
|
DiesTriggeredAbility ability = new DiesTriggeredAbility(new ExileSourceEffect());
|
||||||
ability.addEffect(null);
|
ability.addEffect(new MoldgrafMonstrosityEffect());
|
||||||
this.addAbility(ability);
|
this.addAbility(ability);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue