mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00:00
Fix for Surveyor's Scope
"X = 0" case didn't shuffle owner's library
This commit is contained in:
parent
763594e579
commit
b21ee39acf
1 changed files with 2 additions and 4 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue