Fix compile error

This commit is contained in:
Alex W. Jackson 2022-09-03 00:53:32 -04:00
parent c4d77bed33
commit a2dc4838a1

View file

@ -77,7 +77,7 @@ 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);
controller.shuffleLibrary(source, game);
return true;
}
return new SearchLibraryPutInPlayEffect(new TargetCardInLibrary(0, numberOfLands, StaticFilters.FILTER_CARD_BASIC_LAND)).apply(game, source);