This commit is contained in:
North 2012-09-04 22:37:22 +03:00
parent 8977922fbd
commit bbe7630558
2 changed files with 2 additions and 2 deletions

View file

@ -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;

View file

@ -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);
}