mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
Merge pull request #5254 from kevinwshin/FixIsolatedWatchtower5246
Fixes Isolated Watchtower
This commit is contained in:
commit
e3e892dcfd
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue