mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00:00
- Fixed Maralen of the Mornsong.
This commit is contained in:
parent
ff489446fe
commit
908861e56a
1 changed files with 7 additions and 5 deletions
|
@ -129,12 +129,14 @@ class MaralenOfTheMornsongEffect2 extends OneShotEffect {
|
||||||
Player player = game.getPlayer(activePlayerId);
|
Player player = game.getPlayer(activePlayerId);
|
||||||
if (player != null) {
|
if (player != null) {
|
||||||
player.loseLife(3, game, false);
|
player.loseLife(3, game, false);
|
||||||
TargetCardInLibrary target = new TargetCardInLibrary();
|
if (player != null) {
|
||||||
if (player.searchLibrary(target, game)) {
|
TargetCardInLibrary target = new TargetCardInLibrary();
|
||||||
player.moveCards(new CardsImpl(target.getTargets()), Zone.HAND, source, game);
|
if (player.searchLibrary(target, game)) {
|
||||||
|
player.moveCards(new CardsImpl(target.getTargets()), Zone.HAND, source, game);
|
||||||
|
}
|
||||||
|
player.shuffleLibrary(source, game);
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
player.shuffleLibrary(source, game);
|
|
||||||
return true;
|
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue