Merge pull request #5254 from kevinwshin/FixIsolatedWatchtower5246

Fixes Isolated Watchtower
This commit is contained in:
LevelX2 2018-08-22 16:34:16 +02:00 committed by GitHub
commit e3e892dcfd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -102,7 +102,7 @@ class IsolatedWatchtowerCondition implements Condition {
StaticFilters.FILTER_LAND, source.getControllerId(), game StaticFilters.FILTER_LAND, source.getControllerId(), game
); );
for (UUID opponentId : game.getOpponents(source.getControllerId())) { for (UUID opponentId : game.getOpponents(source.getControllerId())) {
if (numLands < 1 + game.getBattlefield().countAll( if (numLands + 2 <= game.getBattlefield().countAll(
StaticFilters.FILTER_LAND, opponentId, game StaticFilters.FILTER_LAND, opponentId, game
)) { )) {
return true; return true;