Some changes to game log messages.

This commit is contained in:
LevelX2 2014-05-29 10:56:16 +02:00
parent 2d7c9a0e1f
commit 5c1ffb5942
2 changed files with 5 additions and 2 deletions

View file

@ -136,9 +136,10 @@ public class LookLibraryAndPickControllerEffect extends LookLibraryControllerEff
if (card != null) {
cards.remove(card);
if (targetZoneLookedCards.equals(Zone.BATTLEFIELD)) {
card.putOntoBattlefield(game, Zone.PICK, source.getSourceId(), source.getControllerId());
player.putOntoBattlefieldWithInfo(card, game, Zone.LIBRARY, source.getSourceId());
} else {
card.moveToZone(targetPickedCards, source.getId(), game, false);
card.moveToZone(targetPickedCards, source.getSourceId(), game, false);
game.informPlayers(player.getName() + " moves a card to " + targetPickedCards.toString());
}
if (revealPickedCards) {
reveal.add(card);

View file

@ -171,12 +171,14 @@ public class LookLibraryControllerEffect extends OneShotEffect<LookLibraryContro
if (card != null) {
cards.remove(card);
card.moveToZone(targetZoneLookedCards, source.getId(), game, putOnTop);
game.informPlayers(player.getName() + " moves a card to " + targetZoneLookedCards.toString());
}
target.clearChosen();
}
if (cards.size() == 1) {
Card card = cards.get(cards.iterator().next(), game);
card.moveToZone(targetZoneLookedCards, source.getId(), game, putOnTop);
game.informPlayers(player.getName() + " moves a card to " + targetZoneLookedCards.toString());
}
break;
case GRAVEYARD: