diff --git a/Mage/src/mage/abilities/effects/common/LookLibraryAndPickControllerEffect.java b/Mage/src/mage/abilities/effects/common/LookLibraryAndPickControllerEffect.java index 9a32add4f93..73830c2c985 100644 --- a/Mage/src/mage/abilities/effects/common/LookLibraryAndPickControllerEffect.java +++ b/Mage/src/mage/abilities/effects/common/LookLibraryAndPickControllerEffect.java @@ -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); diff --git a/Mage/src/mage/abilities/effects/common/LookLibraryControllerEffect.java b/Mage/src/mage/abilities/effects/common/LookLibraryControllerEffect.java index 882ed8cc422..364f0296cc0 100644 --- a/Mage/src/mage/abilities/effects/common/LookLibraryControllerEffect.java +++ b/Mage/src/mage/abilities/effects/common/LookLibraryControllerEffect.java @@ -171,12 +171,14 @@ public class LookLibraryControllerEffect extends OneShotEffect