mirror of
https://github.com/correl/mage.git
synced 2024-12-28 03:00:10 +00:00
[VOC] fixed Umbris, Fear Manifest not properly counting cards in exile (fixes #8480)
This commit is contained in:
parent
c93af17190
commit
17d9f080f9
1 changed files with 1 additions and 1 deletions
|
@ -85,7 +85,7 @@ enum UmbrisFearManifestValue implements DynamicValue {
|
||||||
.flatMap(Collection::stream)
|
.flatMap(Collection::stream)
|
||||||
.filter(Objects::nonNull)
|
.filter(Objects::nonNull)
|
||||||
.map(Card::getOwnerId)
|
.map(Card::getOwnerId)
|
||||||
.filter(game.getOpponents(sourceAbility.getSourceId())::contains)
|
.filter(game.getOpponents(sourceAbility.getControllerId())::contains)
|
||||||
.mapToInt(x -> 1)
|
.mapToInt(x -> 1)
|
||||||
.sum();
|
.sum();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue