- Fixed Maralen of the Mornsong.

This commit is contained in:
Achilles 2017-03-25 14:07:14 -05:00
parent ff489446fe
commit 908861e56a

View file

@ -129,6 +129,7 @@ class MaralenOfTheMornsongEffect2 extends OneShotEffect {
Player player = game.getPlayer(activePlayerId);
if (player != null) {
player.loseLife(3, game, false);
if (player != null) {
TargetCardInLibrary target = new TargetCardInLibrary();
if (player.searchLibrary(target, game)) {
player.moveCards(new CardsImpl(target.getTargets()), Zone.HAND, source, game);
@ -136,6 +137,7 @@ class MaralenOfTheMornsongEffect2 extends OneShotEffect {
player.shuffleLibrary(source, game);
return true;
}
}
return false;
}