mirror of
https://github.com/correl/mage.git
synced 2024-12-26 19:16:54 +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)
|
||||
.filter(Objects::nonNull)
|
||||
.map(Card::getOwnerId)
|
||||
.filter(game.getOpponents(sourceAbility.getSourceId())::contains)
|
||||
.filter(game.getOpponents(sourceAbility.getControllerId())::contains)
|
||||
.mapToInt(x -> 1)
|
||||
.sum();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue