This commit is contained in:
Alex W. Jackson 2022-09-03 00:52:00 -04:00
parent b5459efa04
commit c4d77bed33

View file

@ -76,6 +76,10 @@ class SurveyorsScopeEffect extends OneShotEffect {
}
game.informPlayers("Surveyor's Scope: X = " + numberOfLands);
// 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.
if (numberOfLands < 1) {
player.shuffleLibrary(source, game);
return true;
}
return new SearchLibraryPutInPlayEffect(new TargetCardInLibrary(0, numberOfLands, StaticFilters.FILTER_CARD_BASIC_LAND)).apply(game, source);
}
return false;