diff --git a/Mage.Sets/src/mage/cards/s/SmeagolHelpfulGuide.java b/Mage.Sets/src/mage/cards/s/SmeagolHelpfulGuide.java index 17253266bae..76d6304048c 100644 --- a/Mage.Sets/src/mage/cards/s/SmeagolHelpfulGuide.java +++ b/Mage.Sets/src/mage/cards/s/SmeagolHelpfulGuide.java @@ -87,10 +87,10 @@ class SmeagolHelpfulGuideEffect extends OneShotEffect { // Every card is revealed, land included. opponent.revealCards(source, revealed, game); - // If there was a land card, the source's controller puts in on the battlefield. - if(land != null) { + // If there was a land card, the source's controller puts in on the battlefield tapped. + if (land != null) { revealed.remove(land); - controller.moveCards(land, Zone.BATTLEFIELD, source, game); + controller.moveCards(land, Zone.BATTLEFIELD, source, game, true, false, false, null); } // Rest of the revealed cards are put into the opponent's graveyard.