forked from External/mage
Fixed tests
This commit is contained in:
parent
46e0af6cc2
commit
aaa92d5e46
2 changed files with 2 additions and 2 deletions
|
|
@ -53,7 +53,7 @@ public class TargetCardInExile extends TargetCard {
|
|||
public Set<UUID> possibleTargets(UUID sourceControllerId, Ability source, Game game) {
|
||||
Set<UUID> possibleTargets = new HashSet<>();
|
||||
if (allExileZones) {
|
||||
for (Card card : game.getExile().getAllCards(game, sourceControllerId)) {
|
||||
for (Card card : game.getExile().getAllCardsByRange(game, sourceControllerId)) {
|
||||
if (filter.match(card, sourceControllerId, source, game)) {
|
||||
possibleTargets.add(card.getId());
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue