mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00: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) {
|
||||
card.moveToZone(Zone.HAND, source.getId(), game, true);
|
||||
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;
|
||||
|
|
|
@ -64,7 +64,7 @@ public class MoldgrafMonstrosity extends CardImpl<MoldgrafMonstrosity> {
|
|||
this.addAbility(TrampleAbility.getInstance());
|
||||
// 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());
|
||||
ability.addEffect(null);
|
||||
ability.addEffect(new MoldgrafMonstrosityEffect());
|
||||
this.addAbility(ability);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue