mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00:00
fix test failures
This commit is contained in:
parent
fb11a59099
commit
58c55bf08c
1 changed files with 2 additions and 2 deletions
|
@ -5015,7 +5015,7 @@ public abstract class PlayerImpl implements Player, Serializable {
|
|||
+ " to PUT on the BOTTOM of your library (Scry)"));
|
||||
chooseTarget(Outcome.Benefit, cards, target, source, game);
|
||||
putCardsOnBottomOfLibrary(new CardsImpl(target.getTargets()), game, source, true);
|
||||
cards.retainZone(Zone.LIBRARY, game);
|
||||
cards.removeIf(target.getTargets()::contains);
|
||||
putCardsOnTopOfLibrary(cards, game, source, true);
|
||||
}
|
||||
game.fireEvent(new GameEvent(GameEvent.EventType.SCRIED, getId(), source, getId(), event.getAmount(), true));
|
||||
|
@ -5037,7 +5037,7 @@ public abstract class PlayerImpl implements Player, Serializable {
|
|||
+ " to PUT into your GRAVEYARD (Surveil)"));
|
||||
chooseTarget(Outcome.Benefit, cards, target, source, game);
|
||||
moveCards(new CardsImpl(target.getTargets()), Zone.GRAVEYARD, source, game);
|
||||
cards.retainZone(Zone.LIBRARY, game);
|
||||
cards.removeIf(target.getTargets()::contains);
|
||||
putCardsOnTopOfLibrary(cards, game, source, true);
|
||||
}
|
||||
game.fireEvent(new GameEvent(GameEvent.EventType.SURVEILED, getId(), source, getId(), event.getAmount(), true));
|
||||
|
|
Loading…
Reference in a new issue