From 0a3fa8c25a61801261cfb192c4077301f35e4df3 Mon Sep 17 00:00:00 2001 From: xenohedron Date: Tue, 12 Sep 2023 18:13:06 -0400 Subject: [PATCH] fix Smeagol Helpful Guide --- Mage.Sets/src/mage/cards/s/SmeagolHelpfulGuide.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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.