mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +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
|
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;
|
||||||
|
|
Loading…
Reference in a new issue