fixed Knight of the Ebon Legion not getting a counter at end of turn

This commit is contained in:
Evan Kranzler 2019-06-27 14:33:02 -04:00
parent b28281db09
commit 783095f0d2

View file

@ -76,7 +76,7 @@ enum KnightOfTheEbonLegionCondition implements Condition {
}
return game
.getState()
.getPlayersInRange(source.getSourceId(), game)
.getPlayersInRange(source.getControllerId(), game)
.stream()
.anyMatch(uuid -> watcher.getLifeLost(uuid) > 3);
}