[VOC] fixed Umbris, Fear Manifest not properly counting cards in exile (fixes #8480)

This commit is contained in:
Evan Kranzler 2021-12-03 08:21:09 -05:00
parent c93af17190
commit 17d9f080f9

View file

@ -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();
} }