mirror of
https://github.com/correl/mage.git
synced 2025-01-12 19:25:44 +00:00
Some changes to game log messages.
This commit is contained in:
parent
2d7c9a0e1f
commit
5c1ffb5942
2 changed files with 5 additions and 2 deletions
|
@ -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);
|
||||
|
|
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue