forked from External/mage
...
This commit is contained in:
parent
2cf247d68b
commit
5eae8136e4
70 changed files with 1286 additions and 399 deletions
|
|
@ -73,11 +73,12 @@ public class PutOnLibraryTargetEffect extends OneShotEffect<PutOnLibraryTargetEf
|
|||
for (Player player: game.getPlayers().values()) {
|
||||
if (player.getGraveyard().contains(card.getId())) {
|
||||
player.getGraveyard().remove(card);
|
||||
if (onTop)
|
||||
player.getLibrary().putOnTop(card, game);
|
||||
else
|
||||
player.getLibrary().putOnBottom(card, game);
|
||||
return true;
|
||||
return card.moveToZone(Zone.LIBRARY, game, onTop);
|
||||
// if (onTop)
|
||||
// player.getLibrary().putOnTop(card, game);
|
||||
// else
|
||||
// player.getLibrary().putOnBottom(card, game);
|
||||
// return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue