1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-11 17:00:08 -09:00

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

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)
.filter(Objects::nonNull)
.map(Card::getOwnerId)
.filter(game.getOpponents(sourceAbility.getSourceId())::contains)
.filter(game.getOpponents(sourceAbility.getControllerId())::contains)
.mapToInt(x -> 1)
.sum();
}