Fixes Isolated Watchtower which previously only checked if an opponent controlled at least as many lands as you. #5246

This commit is contained in:
Kevin Shin 2018-08-22 05:07:43 -05:00
parent 09f5af154e
commit 5d4ec0340a

View file

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