From b21ee39acfd2679da9db7bb7a286e25991b393ed Mon Sep 17 00:00:00 2001 From: Zzooouhh Date: Fri, 8 Dec 2017 12:44:43 +0100 Subject: [PATCH] Fix for Surveyor's Scope "X = 0" case didn't shuffle owner's library --- Mage.Sets/src/mage/cards/s/SurveyorsScope.java | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Mage.Sets/src/mage/cards/s/SurveyorsScope.java b/Mage.Sets/src/mage/cards/s/SurveyorsScope.java index 7621dce50ba..988c0fc6940 100644 --- a/Mage.Sets/src/mage/cards/s/SurveyorsScope.java +++ b/Mage.Sets/src/mage/cards/s/SurveyorsScope.java @@ -101,10 +101,8 @@ class SurveyorsScopeEffect extends OneShotEffect { } } game.informPlayers(new StringBuilder("Surveyor's Scope: X = ").append(numberOfLands).toString()); - if (numberOfLands > 0) { - return new SearchLibraryPutInPlayEffect(new TargetCardInLibrary(0, numberOfLands, StaticFilters.FILTER_BASIC_LAND_CARD)).apply(game, source); - } - return true; + // 10/17/2013 If no players control at least two more lands than you when the ability resolves, you’ll still search and shuffle your library. + return new SearchLibraryPutInPlayEffect(new TargetCardInLibrary(0, numberOfLands, StaticFilters.FILTER_BASIC_LAND_CARD)).apply(game, source); } return false; }